///////////////////////////////////////////////////////////////////////////
//Tom Valesky
//CS-752
//Dr. Chen, instructor
// point.h -- class interface for Point class
///////////////////////////////////////////////////////////////////////////
class Point
{
	public:
        float x;
        float y;
        float z;
	float dx, dy, dz; //delta-v
	float r, g, b, alpha;		//color components

        public:
        Point(void);
        void dump(void);

};
