File: XCollDetSegRespV1.cpp

package info (click to toggle)
cigi-ccl 3.3.3a%2Bsvn818-7
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 7,332 kB
  • ctags: 7,175
  • sloc: cpp: 62,566; makefile: 541; ruby: 400; ansic: 313; sh: 68
file content (40 lines) | stat: -rw-r--r-- 966 bytes parent folder | download | duplicates (2)
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
// XCollDetSegRespV1.cpp: Body of the XCollDetSegRespV1 class.
//
//////////////////////////////////////////////////////////////////////

#include "XCollDetSegRespV1.h"
#include <CigiCollDetSegRespV1.h>

#include <stdio.h>

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

XCollDetSegRespV1::XCollDetSegRespV1()
{

}

XCollDetSegRespV1::~XCollDetSegRespV1()
{

}


void XCollDetSegRespV1::OnPacketReceived(CigiBasePacket *Packet)
{
   CigiCollDetSegRespV1 *InPckt = (CigiCollDetSegRespV1 *)Packet;


   printf("Collision Detection Segment Response V1:\n");
   printf("\tEntity ID = %u\n",InPckt->GetEntityID());
   printf("\tSegment ID = %u\n",InPckt->GetSegID());
   printf("\tMaterial = %u\n",InPckt->GetMaterial());
   printf("\tX = %f\n",InPckt->GetX());
   printf("\tY = %f\n",InPckt->GetY());
   printf("\tZ = %f\n",InPckt->GetZ());

}