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