TDME2
1.9.121
src
tdme
engine
primitives
HeightMap.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <
tdme/tdme.h
>
4
#include <
tdme/engine/primitives/fwd-tdme.h
>
5
#include <
tdme/engine/primitives/BoundingVolume.h
>
6
#include <
tdme/math/Vector3.h
>
7
8
using
tdme::engine::primitives::BoundingVolume
;
9
using
tdme::math::Vector3
;
10
11
/**
12
* Height map physics primitive
13
* @author Andreas Drewke
14
* @version $Id$
15
*/
16
class
tdme::engine::primitives::HeightMap
final
17
:
public
BoundingVolume
18
{
19
private
:
20
int
columns
;
21
int
rows
;
22
float
minHeight
;
23
float
maxHeight
;
24
float
*
heightValues
;
25
26
public
:
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
*/
36
HeightMap
(
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
};
BoundingVolume.h
Vector3.h
tdme::engine::primitives::BoundingVolume
Bounding volume interface.
Definition:
BoundingVolume.h:26
tdme::engine::primitives::BoundingVolume::scale
Vector3 scale
Definition:
BoundingVolume.h:37
tdme::engine::primitives::HeightMap
Height map physics primitive.
Definition:
HeightMap.h:18
tdme::engine::primitives::HeightMap::rows
int rows
Definition:
HeightMap.h:21
tdme::engine::primitives::HeightMap::HeightMap
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
tdme::engine::primitives::HeightMap::columns
int columns
Definition:
HeightMap.h:20
tdme::engine::primitives::HeightMap::minHeight
float minHeight
Definition:
HeightMap.h:22
tdme::engine::primitives::HeightMap::heightValues
float * heightValues
Definition:
HeightMap.h:24
tdme::engine::primitives::HeightMap::setScale
void setScale(const Vector3 &scale) override
Set local scale.
Definition:
HeightMap.cpp:44
tdme::engine::primitives::HeightMap::clone
BoundingVolume * clone() const override
Clones this bounding volume.
Definition:
HeightMap.cpp:48
tdme::engine::primitives::HeightMap::maxHeight
float maxHeight
Definition:
HeightMap.h:23
tdme::math::Vector3
3D vector 3 class
Definition:
Vector3.h:22
fwd-tdme.h
tdme.h
Generated by
1.9.3