TDME2 1.9.121
HeightMap.cpp
Go to the documentation of this file.
2
3#include <ext/reactphysics3d/src/collision/shapes/HeightFieldShape.h>
4#include <ext/reactphysics3d/src/mathematics/Vector3.h>
5
6#include <tdme/tdme.h>
7#include <tdme/math/Vector3.h>
9
10using std::to_string;
11
15
16HeightMap::HeightMap(
17 int columns,
18 int rows,
19 float minHeight,
20 float maxHeight,
21 float* heightValues,
22 const Vector3& scale
23) {
24 this->scale.set(scale);
25 this->columns = columns;
26 this->rows = rows;
27 this->minHeight = minHeight;
28 this->maxHeight = maxHeight;
29 this->heightValues = heightValues;
30 collisionShape = new reactphysics3d::HeightFieldShape(
31 columns,
32 rows,
36 reactphysics3d::HeightFieldShape::HeightDataType::HEIGHT_FLOAT_TYPE,
37 1,
38 1.0f,
39 reactphysics3d::Vector3(scale.getX(), scale.getY(), scale.getZ())
40 );
42}
43
44void HeightMap::setScale(const Vector3& scale) {
45 Console::println("HeightMap::setScale(): not supported!");
46}
47
49{
51}
52
reactphysics3d::CollisionShape * collisionShape
void computeBoundingBox()
Compute bounding box.
Height map physics primitive.
Definition: HeightMap.h:18
HeightMap(int columns, int rows, float minHeight, float maxHeight, float *heightValues, const Vector3 &scale=Vector3(1.0f, 1.0f, 1.0f))
Public constructor.
Definition: HeightMap.cpp:16
void setScale(const Vector3 &scale) override
Set local scale.
Definition: HeightMap.cpp:44
BoundingVolume * clone() const override
Clones this bounding volume.
Definition: HeightMap.cpp:48
3D vector 3 class
Definition: Vector3.h:22
float getY() const
Definition: Vector3.h:119
float getX() const
Definition: Vector3.h:103
float getZ() const
Definition: Vector3.h:136
Vector3 & set(float x, float y, float z)
Set up vector.
Definition: Vector3.h:73
Console class.
Definition: Console.h:26