TDME2 1.9.121
Capsule.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 * Capsule physics primitive
13 * @author Andreas Drewke
14 * @version $Id$
15 */
17 : public BoundingVolume
18{
19public:
20 /**
21 * Public constructor
22 * @param a a
23 * @param b b
24 * @param radius radius
25 * @param scale scale
26 */
27 Capsule(const Vector3& a, const Vector3& b, float radius, const Vector3& scale = Vector3(1.0f, 1.0f, 1.0f));
28
29 /**
30 * @return radius
31 */
32 float getRadius() const;
33
34 /**
35 * @return line segment point a
36 */
37 const Vector3& getA() const;
38
39 /**
40 * @return line segment point b
41 */
42 const Vector3& getB() const;
43
44
45 // overrides
46 void setScale(const Vector3& scale) override;
47 BoundingVolume* clone() const override;
48
49private:
50 //
53 float radius;
54};
Capsule physics primitive.
Definition: Capsule.h:18
const Vector3 & getB() const
Definition: Capsule.cpp:39
void setScale(const Vector3 &scale) override
Set local scale.
Definition: Capsule.cpp:44
const Vector3 & getA() const
Definition: Capsule.cpp:34
BoundingVolume * clone() const override
Clones this bounding volume.
Definition: Capsule.cpp:101
3D vector 3 class
Definition: Vector3.h:22