Struct ObjectGraphicsAdapter.VertexInfo
Helper struct storing vertex information on a single hexagon for mesh generation.
Namespace: AS2.Visuals
Assembly: .dll
Syntax
private struct ObjectGraphicsAdapter.VertexInfo
Constructors
| Edit this page View SourceVertexInfo(bool)
Declaration
public VertexInfo(bool active)
Parameters
Type | Name | Description |
---|---|---|
bool | active |
Fields
| Edit this page View Sourceouter
Bools telling which vertices of the hexagon are outer vertices. Indexing works like for vertices.
Declaration
public bool[] outer
Field Value
Type | Description |
---|---|
bool[] |
vertices
Vertex indices of the 6 vertices of the hexagon. The entry at position i is the index of the vertex in the mesh's vertex list. Hexagon vertices are counted in counter-clockwise order, starting with the ENE vertex.
Declaration
public int[] vertices
Field Value
Type | Description |
---|---|
int[] |