C# Класс Axiom.Graphics.EdgeData.Edge

Edge data.
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
isDegenerate bool
sharedVertIndex int[]
triIndex int[]
vertIndex int[]

Открытые методы

Метод Описание
Edge ( ) : System

Default constructor.

ToString ( ) : string

Описание методов

Edge() публичный метод

Default constructor.
public Edge ( ) : System
Результат System

ToString() публичный метод

public ToString ( ) : string
Результат string

Описание свойств

isDegenerate публичное свойство

Indicates if this is a degenerate edge, ie it does not have 2 triangles.
public bool isDegenerate
Результат bool

sharedVertIndex публичное свойство

Vertex indices as used in the shared vertex list, not exposed.
public int[] sharedVertIndex
Результат int[]

triIndex публичное свойство

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
Результат int[]

vertIndex публичное свойство

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
Результат int[]