Make getVertexAt and getHeightAt public to allow for inspecting the height field (e.g. for debug draw the height field)

This commit is contained in:
Mkr 2018-08-16 21:32:25 -07:00
parent fa1917a782
commit 78bbb7320d

View File

@ -161,12 +161,6 @@ class HeightFieldShape : public ConcaveShape {
void getTriangleVerticesWithIndexPointer(int32 subPart, int32 triangleIndex,
Vector3* outTriangleVertices) const;
/// Return the vertex (local-coordinates) of the height field at a given (x,y) position
Vector3 getVertexAt(int x, int y) const;
/// Return the height of a given (x,y) point in the height field
decimal getHeightAt(int x, int y) const;
/// Return the closest inside integer grid value of a given floating grid value
int computeIntegerGridValue(decimal value) const;
@ -201,6 +195,12 @@ class HeightFieldShape : public ConcaveShape {
/// Return the number of columns in the height field
int getNbColumns() const;
/// Return the vertex (local-coordinates) of the height field at a given (x,y) position
Vector3 getVertexAt(int x, int y) const;
/// Return the height of a given (x,y) point in the height field
decimal getHeightAt(int x, int y) const;
/// Return the type of height value in the height field
HeightDataType getHeightDataType() const;