Main Page   Class Hierarchy   Compound List   File List   Compound Members   File Members  

ArcRep.h

Go to the documentation of this file.
00001 //     $Id: ArcRep.h,v 1.3 2001/01/23 01:40:11 burnett Exp $
00002 //  Author: T. Burnett
00003 // Project: Arve graphics 
00004 
00005 #ifndef ARCREP_H
00006 #define ARCREP_H
00007 #include "gui/DisplayRep.h"
00008 #include "geometry/Point.h"
00009 #include "geometry/Vector.h"
00010 
00011 class ArcRep : public gui::DisplayRep {
00012 public:
00013     ArcRep( const Point& center, double radius, const Vector& xhat,
00014         const Vector& yhat, double phi0);
00015     // constructor: specify parameters
00016 
00017     void update();
00018     
00019 private:
00020     Point m_center;
00021     double m_radius;
00022     Vector m_xhat, m_yhat;
00023     double m_phi0;
00024 };
00025 
00026 #endif //ARCREP_H

Generated at Mon Nov 26 18:18:44 2001 by doxygen1.2.3 written by Dimitri van Heesch, © 1997-2000