1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
// XRateCtrl.cpp: Body of the XRateCtrl class.
//
//////////////////////////////////////////////////////////////////////
#include "XRateCtrl.h"
#include <stdio.h>
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
XRateCtrl::XRateCtrl()
{
}
XRateCtrl::~XRateCtrl()
{
}
void XRateCtrl::OnPacketReceived(CigiBasePacket *Packet)
{
CigiRateCtrlV3_2 *InPckt = (CigiRateCtrlV3_2 *)Packet;
bool ok = true;
printf("===> RateCtrl <===\n");
printf("EntityID ==> %d\n",InPckt->GetEntityID());
printf("ArtPartID ==> %d\n",InPckt->GetArtPartID());
printf("ApplyToArtPart ==> %d\n",InPckt->GetApplyToArtPart());
printf("CoordSystem ==> %d\n",InPckt->GetCoordSys());
printf("XRate ==> %f\n",InPckt->GetXRate());
printf("YRate ==> %f\n",InPckt->GetYRate());
printf("ZRate ==> %f\n",InPckt->GetZRate());
printf("RollRate ==> %f\n",InPckt->GetRollRate());
printf("PitchRate ==> %f\n",InPckt->GetPitchRate());
printf("YawRate ==> %f\n",InPckt->GetYawRate());
}
|