| PathEngine home | previous: | next: |
Constructs an iMesh object from a data buffer containing a 3d ground mesh.
iMesh* loadMeshFromBuffer(const char* format, const char* dataBuffer, tUnsigned32 bufferSize, const char *const* options); |
| format |
A C string specifying the format of the data in the buffer.
Currently this can be "xml" or "tok" (lower case). This format string is not retained after the call and can subsequently be safely deleted. | ||
| dataBuffer | A byte buffer. This buffer is not retained after the call and can subsequently be safely deleted. | ||
| bufferSize | The size of the buffer pointed to by dataBuffer, in bytes. | ||
| options | A set of attribute and value pairs that can be used to control some aspects of the mesh loading process. |
If the data passed in is valid then a newly created
Otherwise non-fatal errors will be reported relating to
the validation failure and zero will be returned.
Refer to
"xml" indicates that the buffer should be parsed as XML.
See
"tok" indicates that the buffer should be treated as tokenised XML.
Tokenised XML represents the same structure as XML but results in a smaller file size.
See
The created
| Documentation for PathEngine release 5.16 - Copyright © 2002-2008 PathEngine | next: |