C# Class MIConvexHull.ConvexFaceInternal

This internal class manages the faces of the convex hull. It is a separate class from the desired user class.
Afficher le fichier Open project: gusmanb/MIConvexHull Class Usage Examples

Méthodes publiques

Свойство Type Description
AdjacentFaces int[]
FurthestVertex int
InList bool
Index int
IsNormalFlipped bool
Next ConvexFaceInternal
Normal double[]
Offset double
Previous ConvexFaceInternal
Tag int
Vertices int[]
VerticesBeyond IndexBuffer

Méthodes publiques

Méthode Description
ConvexFaceInternal ( int dimension, int index, IndexBuffer beyondList ) : System.Collections.Generic

Initializes a new instance of the ConvexFaceInternal class.

Method Details

ConvexFaceInternal() public méthode

Initializes a new instance of the ConvexFaceInternal class.
public ConvexFaceInternal ( int dimension, int index, IndexBuffer beyondList ) : System.Collections.Generic
dimension int
index int
beyondList IndexBuffer
Résultat System.Collections.Generic

Property Details

AdjacentFaces public_oe property

Gets or sets the adjacent face data.
public int[] AdjacentFaces
Résultat int[]

FurthestVertex public_oe property

The furthest vertex.
public int FurthestVertex
Résultat int

InList public_oe property

Is it present in the list.
public bool InList
Résultat bool

Index public_oe property

Index of the face inside the pool.
public int Index
Résultat int

IsNormalFlipped public_oe property

Is the normal flipped?
public bool IsNormalFlipped
Résultat bool

Next public_oe property

Next node in the list.
public ConvexFaceInternal,MIConvexHull Next
Résultat ConvexFaceInternal

Normal public_oe property

Gets or sets the normal vector.
public double[] Normal
Résultat double[]

Offset public_oe property

Face plane constant element.
public double Offset
Résultat double

Previous public_oe property

Prev node in the list.
public ConvexFaceInternal,MIConvexHull Previous
Résultat ConvexFaceInternal

Tag public_oe property

Used to traverse affected faces and create the Delaunay representation.
public int Tag
Résultat int

Vertices public_oe property

Gets or sets the vertices.
public int[] Vertices
Résultat int[]

VerticesBeyond public_oe property

Gets or sets the vertices beyond.
public IndexBuffer VerticesBeyond
Résultat IndexBuffer