40 virtual DtPointObjectStatePdu* stateMsg(
47 virtual inline void setLocThreshold(
double val );
48 virtual inline double locThreshold()
const;
55 virtual inline void setOriThreshold(
double val );
56 virtual inline double oriThreshold()
const;
74 DtPointObjectStatePdu myPdu;
75 double myLocThresholdSquared;
76 double myOriThresholdSquared;
80 inline void DtPointObjectEncoder::setLocThreshold(
double val )
82 myLocThresholdSquared = val*val;
85 inline double DtPointObjectEncoder::locThreshold()
const
87 return sqrt(myLocThresholdSquared);
90 inline void DtPointObjectEncoder::setOriThreshold(
double val )
92 myOriThresholdSquared = val*val;
95 inline double DtPointObjectEncoder::oriThreshold()
const
97 return sqrt(myOriThresholdSquared);
Contains the DtPointObjectRepository class declaration.
#define DT_DLL_VL
Definition: vlMachineTypes.h:108
Contains the DtPointObjectStatePdu class declaration.
Instances of DtPointObjectRepository are used to maintain state information needed by point environme...
Definition: pointObjectRepository.h:31
Instances of DtPointObjectEncoder are used to encode point object state messages from a state reposit...
Definition: pointObjectEncoderHLA.h:33
This file declares the DIS version of DtStateEncoder.