![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /******************************************************************************* 00002 ** Copyright (c) 2001 MaK Technologies, Inc. 00003 ** All rights reserved. 00004 *******************************************************************************/ 00005 /******************************************************************************* 00006 ** $RCSfile: csValidVec.h,v $ $Revision: 1.5 $ $State: Exp $ 00007 *******************************************************************************/ 00008 00011 00017 00018 #ifndef DtCoordSysValidationVector_H_ 00019 #define DtCoordSysValidationVector_H_ 00020 00021 #include <vlutil/vlMachineTypes.h> 00022 00023 #include "vrfobjcore/vrfobjcoreDefines.h" 00024 class DT_DLL_vrfobjcore DtCoordSysValidationVector 00025 { 00026 public: 00028 DtCoordSysValidationVector(); 00029 00031 DtCoordSysValidationVector(const DtCoordSysValidationVector& orig); 00032 00034 const DtCoordSysValidationVector& operator=( 00035 const DtCoordSysValidationVector& orig); 00036 00038 virtual ~DtCoordSysValidationVector(); 00039 00041 virtual DtCoordSysValidationVector* clone() const; 00042 00044 virtual void invalidateBase(); 00045 00046 virtual bool positionValid(); 00047 virtual bool positionValid() const; 00048 virtual void validatePosition(); 00049 virtual void invalidatePosition(); 00050 00051 virtual bool velocityValid(); 00052 virtual bool velocityValid() const; 00053 virtual void validateVelocity(); 00054 virtual void invalidateVelocity(); 00055 00056 virtual bool accelerationValid(); 00057 virtual bool accelerationValid() const; 00058 virtual void validateAcceleration(); 00059 virtual void invalidateAcceleration(); 00060 00061 virtual bool orientationValid(); 00062 virtual bool orientationValid() const; 00063 virtual void validateOrientation(); 00064 virtual void invalidateOrientation(); 00065 00066 protected: 00067 bool myPositionValid; 00068 bool myVelocityValid; 00069 bool myAccelerationValid; 00070 bool myOrientationValid; 00071 }; 00072 00073 #endif