My Project
|
Interface for mesh I/O. More...
Public Member Functions | |
IMesh | Import (string filename) |
Read a file containing a mesh. | |
void | Write (IMesh mesh, string filename) |
Save a mesh to disk. | |
void | Write (IMesh mesh, Stream stream) |
Save a mesh to a Stream. | |
![]() | |
bool | IsSupported (string file) |
Interface for mesh I/O.
IMesh TriangleNet.IO.IMeshFormat.Import | ( | string | filename | ) |
Read a file containing a mesh.
filename | The path of the file to read. |
Implemented in TriangleNet.IO.TriangleFormat.
void TriangleNet.IO.IMeshFormat.Write | ( | IMesh | mesh, |
Stream | stream | ||
) |
Save a mesh to a Stream.
mesh | An instance of the IMesh interface. |
stream | The stream to save to. |
Implemented in TriangleNet.IO.TriangleFormat.
void TriangleNet.IO.IMeshFormat.Write | ( | IMesh | mesh, |
string | filename | ||
) |
Save a mesh to disk.
mesh | An instance of the IMesh interface. |
filename | The path of the file to save. |
Implemented in TriangleNet.IO.TriangleFormat.