TDME2 1.9.121
Plane.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
6#include <tdme/math/Vector3.h>
7
9
10/**
11 * Plane entity, this is not directly connectable with physics engine
12 * @author Andreas Drewke
13 * @version $Id$
14 */
16{
17private:
19 float distance;
20
21public:
22 /**
23 * Public constructor
24 */
25 inline Plane() {
26 normal.set(0.0f, 0.0f, 0.0f);
27 distance = 0.0f;
28 }
29
30 /**
31 * Public constructor
32 * @param normal normal
33 * @param distance distance
34 */
35 inline Plane(const Vector3& normal, float distance) {
36 this->normal.set(normal);
37 this->distance = distance;
38 }
39
40 /**
41 * @return float distance from origin
42 */
43 inline float getDistance() const {
44 return distance;
45 }
46
47 /**
48 * Set up distance from origin
49 * @param distance distance
50 */
51 inline void setDistance(float distance) {
52 this->distance = distance;
53 }
54
55 /**
56 * @return normal
57 */
58 inline const Vector3& getNormal() const {
59 return normal;
60 }
61
62 /**
63 * @return normal
64 */
65 inline void setNormal(const Vector3& normal) {
66 this->normal = normal;
67 }
68
69 /**
70 * Compute distance from plane
71 * @param point point
72 * @return distance
73 */
74 inline float computeDistance(const Vector3& point) const {
75 return Vector3::computeDotProduct(normal, point) + getDistance();
76 }
77
78};
Plane entity, this is not directly connectable with physics engine.
Definition: Plane.h:16
void setNormal(const Vector3 &normal)
Definition: Plane.h:65
const Vector3 & getNormal() const
Definition: Plane.h:58
Plane(const Vector3 &normal, float distance)
Public constructor.
Definition: Plane.h:35
float getDistance() const
Definition: Plane.h:43
float computeDistance(const Vector3 &point) const
Compute distance from plane.
Definition: Plane.h:74
void setDistance(float distance)
Set up distance from origin.
Definition: Plane.h:51
Plane()
Public constructor.
Definition: Plane.h:25
3D vector 3 class
Definition: Vector3.h:22
Vector3 & set(float x, float y, float z)
Set up vector.
Definition: Vector3.h:73