Returns the difference of this convex and another.

Namespace: Spherical
Assembly: SphericalLib (in SphericalLib.dll) Version: 1.0.5951.32246 (1.0.0.0)

Syntax

C#
public Region Difference(
	Convex convex
)
Visual C++
public:
Region^ Difference(
	Convex^ convex
)
F#
member Difference : 
        convex:Convex -> Region 

Parameters

convex
Type: Spherical..::..Convex
The convex to subtract.

Return Value

The difference is a region in general.

Remarks

In I but not in C: X = I\C Algorithmically:
CopyC#
X = (I*~h1)|(I*h1*~h2)|(I*h1*h2*~h3)|... , where C=h1*h2*...

See Also