Method | Description | |
---|---|---|
Deserialize ( byte data ) : IEnumerable |
Deserializes a list of Mesh objects from the provided byte array.
|
|
Serialize ( IEnumerable |
Serializes a list of Mesh objects into a byte array.
|
Method | Description | |
---|---|---|
ReadMesh ( |
Reads a single Mesh object from the data stream.
|
|
ReadMeshHeader ( |
Reads a mesh header from the data stream.
|
|
ReadTriangleIndicies ( |
Reads the vertex indices that represent a mesh's triangles from the data stream
|
|
ReadVertices ( |
Reads a mesh's vertices from the data stream.
|
|
WriteMesh ( |
Writes a Mesh object to the data stream.
|
|
WriteMeshHeader ( |
Writes a mesh header to the data stream.
|
|
WriteTriangleIndicies ( |
Writes the vertex indices that represent a mesh's triangles to the data stream
|
|
WriteVertices ( |
Writes a mesh's vertices to the data stream.
|
public static Deserialize ( byte data ) : IEnumerable |
||
data | byte | Binary data to be deserialized into a list of Mesh objects. |
return | IEnumerable |
public static Serialize ( IEnumerable |
||
meshes | IEnumerable |
List of Mesh objects to be serialized. |
return | byte[] |