00001
00002
00003
00004
00005
00006 #if !defined( _POINT_H_ )
00007
00008 #define _POINT_H_
00009
00010 #include "GLee.h"
00011
00012
00013 class Point {
00014 public:
00015
00016 Point();
00017
00018
00019 Point(Point *copy);
00020
00021
00022 Point(GLfloat xIn, GLfloat yIn, GLfloat zIn);
00023
00024 GLfloat m_x;
00025 GLfloat m_y;
00026 GLfloat m_z;
00027
00028
00029 void Dump();
00030
00031
00032 void Draw();
00033
00034
00035 void Translatef();
00036
00037
00038 static void Average(Point *a, Point *b, Point *result);
00039 };
00040
00041 #endif