Table of Contents

Class GeometricMeshData<T>

Namespace
Stride.Graphics
Assembly
Stride.Graphics.dll

A geometric data.

public class GeometricMeshData<T> : ComponentBase, IDisposable, IComponent, IReferencable, ICollectorHolder where T : struct, IVertex

Type Parameters

T
Inheritance
GeometricMeshData<T>
Implements
Inherited Members
Extension Methods

Constructors

GeometricMeshData(T[], int[], bool)

public GeometricMeshData(T[] vertices, int[] indices, bool isLeftHanded)

Parameters

vertices T[]
indices int[]
isLeftHanded bool

Properties

Indices

Gets or sets the indices.

public int[] Indices { get; set; }

Property Value

int[]

The indices.

IsLeftHanded

Gets or sets a value indicating whether this instance is left handed.

public bool IsLeftHanded { get; set; }

Property Value

bool

true if this instance is left handed; otherwise, false.

Vertices

Gets or sets the vertices.

public T[] Vertices { get; set; }

Property Value

T[]

The vertices.