Contents, API Reference, Interfaces, iMesh, heightAtPosition
iMesh::heightAtPosition()
Description
Provides the height for a position on the surface of this ground mesh.
Syntax
int32_t heightAtPosition(const cPosition& position) const; |
Parameters
| position | |
This must be a valid cPosition on this mesh.
|
Return Value
The approximate height at the specified position.
Remarks
Refer to PathEngine Coordinates for more details about the pathengine coordinate system.
See Converting to and from PathEngine's Position Representation
for an overview of all the position conversion methods.
See Also
iMesh::positionFor3DPoint()
C# Mapping
int heightAtPosition(PathEngine.Position position); |
Java Mapping
int heightAtPosition(Position position);
|