00001 #ifndef _IGS_SEGMENT_H_ 00002 #define _IGS_SEGMENT_H_ 00003 00004 #include "IGS_Object.h" 00005 #include "math/segment.h" 00006 00007 class IGS_Segment : 00008 public Segment, 00009 public IGS_Object 00010 { 00011 public: 00012 // constructor 00013 IGS_Segment( const Vector4& p0, const Vector4& p1 ); 00014 00015 //renders the object 00016 virtual void Render( const IGS_Controller& controller ) const; 00017 }; 00018 00019 #endif