Method | Description | |
---|---|---|
Load ( string fileName ) : IEnumerable |
Loads the specified mesh file. Determines the path from which to load and automatically applies the file extension. |
|
Save ( string fileName, IEnumerable |
Saves the provided meshes to the specified file. Determines the save path to use and automatically applies the file extension. |
Method | Description | |
---|---|---|
OpenFileForRead ( string folderName, string fileName ) : Stream |
Opens the specified file for reading.
|
|
OpenFileForWrite ( string folderName, string fileName ) : Stream |
Opens the specified file for writing. If the specified file already exists, it will be overwritten. |
public static Load ( string fileName ) : IEnumerable |
||
fileName | string | Name of the saved mesh file. Exclude path and extension. |
return | IEnumerable |
public static Save ( string fileName, IEnumerable |
||
fileName | string | Name to give the saved mesh file. Exclude path and extension. |
meshes | IEnumerable |
The collection of Mesh objects to save. |
return | string |