C# Class Axiom.Graphics.EdgeData.Edge

Edge data.
Afficher le fichier Open project: WolfgangSt/axiom Class Usage Examples

Méthodes publiques

Свойство Type Description
isDegenerate bool
sharedVertIndex int[]
triIndex int[]
vertIndex int[]

Méthodes publiques

Méthode Description
Edge ( ) : System

Default constructor.

ToString ( ) : string

Method Details

Edge() public méthode

Default constructor.
public Edge ( ) : System
Résultat System

ToString() public méthode

public ToString ( ) : string
Résultat string

Property Details

isDegenerate public_oe property

Indicates if this is a degenerate edge, ie it does not have 2 triangles.
public bool isDegenerate
Résultat bool

sharedVertIndex public_oe property

Vertex indices as used in the shared vertex list, not exposed.
public int[] sharedVertIndex
Résultat int[]

triIndex public_oe property

The indexes of the 2 tris attached, note that tri 0 is the one where the indexes run *counter* clockwise along the edge. Indexes must be reversed for tri 1.
public int[] triIndex
Résultat int[]

vertIndex public_oe property

The vertex indices for this edge. Note that both vertices will be in the vertex set as specified in 'vertexSet', which will also be the same as tri 0.
public int[] vertIndex
Résultat int[]