summaryrefslogtreecommitdiffstats
path: root/kue/sphere.h
blob: f106142e1396d6bd89d238975982edf861428751 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _SPHERE_H
#define _SPHERE_H


// Draws a sphere
class sphere {
  public:
	static void draw(double x, double y, double radius, double rot_x, double rot_y);
};

#endif