Contents, API Reference, Interfaces, iMesh, heightAtPositionF
iMesh::heightAtPositionF()
Description
Provides the height for a position on the surface of this ground mesh (as a float).
Syntax
float heightAtPositionF(const cPosition& position) const; |
Parameters
| position | |
This must be a valid cPosition on this mesh.
|
Return Value
The 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::heightAtPositionWithPrecision()
C# Mapping
float heightAtPositionF(PathEngine.Position position); |
Java Mapping
float heightAtPositionF(Position position);
|