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:
parent
fa1917a782
commit
78bbb7320d
|
@ -161,12 +161,6 @@ class HeightFieldShape : public ConcaveShape {
|
||||||
void getTriangleVerticesWithIndexPointer(int32 subPart, int32 triangleIndex,
|
void getTriangleVerticesWithIndexPointer(int32 subPart, int32 triangleIndex,
|
||||||
Vector3* outTriangleVertices) const;
|
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
|
/// Return the closest inside integer grid value of a given floating grid value
|
||||||
int computeIntegerGridValue(decimal value) const;
|
int computeIntegerGridValue(decimal value) const;
|
||||||
|
|
||||||
|
@ -201,6 +195,12 @@ class HeightFieldShape : public ConcaveShape {
|
||||||
|
|
||||||
/// Return the number of columns in the height field
|
/// Return the number of columns in the height field
|
||||||
int getNbColumns() const;
|
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
|
/// Return the type of height value in the height field
|
||||||
HeightDataType getHeightDataType() const;
|
HeightDataType getHeightDataType() const;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user