Main Page   Modules   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members   Related Pages  

/home/rdbrown/doxygen/cse125g1/src/modules/actor/DOF.h

00001 #ifndef _DOF_H
00002 #define _DOF_H
00003 
00004 class DOF {
00005         public:
00006                 DOF() {}
00007 //              void Init(float val0, float _min, float _max) {val = val0; min = _min; max = _max; }
00008                 void Print();
00009 //              void SetMin(float _min) { min = _min; }
00010 //              void SetMax(float _max) { max = _max; }
00011                 void SetVal(float _val) { val = _val; }
00012                 float GetVal() {return val;}
00013 //              float GetMin() {return min;}
00014 //              float GetMax() {return max;}
00015         
00016         public:
00017                 float val;//, min, max;
00018 };
00019 
00020 #endif          //_DOF_H

Generated on Thu Aug 18 16:03:09 2005 for Robin Hood: Thieves & Knights by doxygen1.2.18