My Project
|
Interface for geometry input. More...
Public Member Functions | |
IPolygon | Read (string filename) |
Read a file containing polygon geometry. | |
void | Write (IPolygon polygon, string filename) |
Save a polygon geometry to disk. | |
void | Write (IPolygon polygon, Stream stream) |
Save a polygon geometry to a Stream. | |
![]() | |
bool | IsSupported (string file) |
Interface for geometry input.
IPolygon TriangleNet.IO.IPolygonFormat.Read | ( | string | filename | ) |
Read a file containing polygon geometry.
filename | The path of the file to read. |
Implemented in TriangleNet.IO.TriangleFormat.
void TriangleNet.IO.IPolygonFormat.Write | ( | IPolygon | polygon, |
Stream | stream | ||
) |
Save a polygon geometry to a Stream.
polygon | An instance of the IPolygon class. |
stream | The stream to save to. |
Implemented in TriangleNet.IO.TriangleFormat.
void TriangleNet.IO.IPolygonFormat.Write | ( | IPolygon | polygon, |
string | filename | ||
) |
Save a polygon geometry to disk.
polygon | An instance of the IPolygon class. |
filename | The path of the file to save. |
Implemented in TriangleNet.IO.TriangleFormat.