Determines which side to keep after slicing a triangle.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public enum SliceMethod
Visual Basic (Declaration)
Public Enumeration SliceMethod
Visual C++
public enum class SliceMethod

Members

Member nameDescription
KeepBoth
Keeps both sides of the sliced triangle.
KeepAbove
Keeps the side above of the slicing plane.
KeepBelow
Keeps the side below of the slicing plane.

Remarks

A point lies 'above' the slicing plane if it lies on the side the normal vector of the plane points to. A point lies 'below' the slicing plane if it lies on the other side of the slicing plane than a point lying 'above' the slicing plane.

See Also