Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: 2e237c5bef470f3fb128a08e6a293e65c130df68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
   gl/sphere.h
   This file is part of the Osirion project and is distributed under 
   the terms of the GNU General Public License version 2 
*/

#ifndef __INCLUDED_SPHERE_H__
#define __INCLUDED_SPHERE_H__

#include "osiriongl.h"

namespace gl {

/// a drawable OpenGL block shape
class Sphere 
{
public:
	/// create a new sphere
	Sphere(Vector3f p = Vector3f(), float r = 1.0f);

	/// copy constructor
	Sphere(const Sphere &other);

	/// destructor
	~Sphere();
	
	/// assignment operator
 	Sphere& operator=(const Sphere &other);

	/// radius of the sphere
	float radius;

	/// position of the sphere
	Vector3f position;

	/// draw the sphere
	void draw();

	/// Top color
	Color topcolor;
	/// bottom color
	Color bottomcolor;

private:
	float  *sintable;
	float  *costable;
};

} // namespace gl

#endif // __INCLUDED_SPHERE_H__