TriMesh.Write32bIndicesTo

TriMesh.Write32bIndicesTo method

Write the indices data as 32bit integer to the stream

public void Write32bIndicesTo(Stream stream)
ParameterTypeDescription
streamStream

Examples

//convert a mesh to TriMesh, the layout is automatically inferred from input mesh
var triMesh = TriMesh.FromMesh(new Sphere().ToMesh());
//save it to a stream, 115 vertices * 32bytes per vertex
var stream = new MemoryStream();
triMesh.WriteVerticesTo(stream);
//save indices as ushort to stream, 504 indices * 2 bytes per index
triMesh.Write32bIndicesTo(stream);

See Also