PathEngine home | previous: | next: |
A helper method for stripping out unconnected ground mesh pieces, based on a supplied set of 'root positions'.
std::unique_ptr<iMesh> buildMeshByCopyingConnectedGround(const iMesh& baseMesh, cPosition const * rootPositions_Buffer, uint32_t rootPositions_BufferEntries, const char *const* options) |
baseMesh | An iMesh object from which ground parts are to be copied. | ||
rootPositions_Buffer, rootPositions_BufferEntries |
(See | ||
options |
A set of named attributes to control exactly how the mesh result is created. |
This method essentially performs a flood fill from the supplied set of root positions, based on triangle to triangle connectivity, and then constructs a new iMesh object to include only the parts of the base mesh that are encountered during this flood fill operation.
At least one root position must be supplied, and each supplied position must be a valid position on the base mesh.
(This then guarantees that the iMesh result cannot be empty.)
This method just copies ground geometry and face attributes from the base mesh,
and does not copy other elements associated with the base mesh,
such as burnt-in context information, named obstacles, and so on.
(This method is essentially provided as a helper method for use during certain content processing setups,
and any additional content elements that are required should be added to the resulting mesh after this method has completed.)
Important note: iMesh objects that are created for use as tiles in
mesh federation include some additional information relating to this tiling,
including information about how to translate to overlapping ground surfaces in adjacent tiles.
This information is not copied by this method, and the iMesh object
that is returned is not then suitable for use as part of an mesh federation tiling.
Mesh buildMeshByCopyingConnectedGround(Mesh baseMesh, PathEngine.Position[] rootPositions, string[] options); |
Documentation for PathEngine release 6.04 - Copyright © 2002-2024 PathEngine | next: |