TDME2 1.9.121
HeightMap.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
6#include <tdme/math/Vector3.h>
7
10
11/**
12 * Height map physics primitive
13 * @author Andreas Drewke
14 * @version $Id$
15 */
17 : public BoundingVolume
18{
19private:
21 int rows;
22 float minHeight;
23 float maxHeight;
25
26public:
27 /**
28 * Public constructor
29 * @param colums columns
30 * @param rows rows
31 * @param minHeight min height
32 * @param maxHeight max height
33 * @param heightValues height values which will not be copied
34 * @param scale scale
35 */
37 int columns,
38 int rows,
39 float minHeight,
40 float maxHeight,
41 float* heightValues,
42 const Vector3& scale = Vector3(1.0f, 1.0f, 1.0f)
43 );
44
45 // overrides
46 void setScale(const Vector3& scale) override;
47 BoundingVolume* clone() const override;
48
49};
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