GeometricMeshData<T> Class
Namespace: Stride.GraphicsAssembly: Stride.Graphics.dll
A geometric data.
Derived from GeometricMeshData<T>:
public class GeometricMeshData<T> : ComponentBase, IDisposable, IComponent, IReferencable, ICollectorHolder where T : struct, IVertex
Type Parameters
Name | Description |
---|---|
T |
Name | Description | |
---|---|---|
Constructors | ||
GeometricMeshData(T[], Int32[], Boolean) | ||
Properties | ||
Indices | Gets or sets the indices. |
|
IsLeftHanded | Gets or sets a value indicating whether this instance is left handed. |
|
Vertices | Gets or sets the vertices. |
Constructors
GeometricMeshData(T[], Int32[], Boolean)
public GeometricMeshData(T[] vertices, int[] indices, bool isLeftHanded)
Parameters
Type | Name | Description |
---|---|---|
T[] | vertices | |
System.Int32[] | indices | |
System.Boolean | isLeftHanded |
Properties
Indices
Gets or sets the indices.
public int[] Indices { get; set; }
Property Value
Type | Description |
---|---|
System.Int32[] | The indices. |
IsLeftHanded
Gets or sets a value indicating whether this instance is left handed.
public bool IsLeftHanded { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Vertices
Gets or sets the vertices.
public T[] Vertices { get; set; }
Property Value
Type | Description |
---|---|
T[] | The vertices. |