File: XViewDef.cpp

package info (click to toggle)
cigi-ccl 3.3.3a%2Bsvn818-10
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 7,332 kB
  • sloc: cpp: 62,566; makefile: 541; ruby: 400; ansic: 313; sh: 68
file content (51 lines) | stat: -rw-r--r-- 1,598 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
41
42
43
44
45
46
47
48
49
50
51
// XViewDef.cpp: Body of the XViewDef class.
//
//////////////////////////////////////////////////////////////////////

#include "XViewDef.h"

#include <stdio.h>

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

XViewDef::XViewDef()
{

}

XViewDef::~XViewDef()
{

}


void XViewDef::OnPacketReceived(CigiBasePacket *Packet)
{
   CigiViewDefV3 *InPckt = (CigiViewDefV3 *)Packet;

   printf("===> ViewDef <===\n");

   printf("ViewID ==> %d\n",InPckt->GetViewID());
   printf("GroupID ==> %d\n",InPckt->GetGroupID());
   printf("FOVNearEn ==> %d\n",InPckt->GetFOVNearEn());
   printf("FOVFarEn ==> %d\n",InPckt->GetFOVFarEn());
   printf("FOVLeftEn ==> %d\n",InPckt->GetFOVLeftEn());
   printf("FOVRightEn ==> %d\n",InPckt->GetFOVRightEn());
   printf("FOVTopEn ==> %d\n",InPckt->GetFOVTopEn());
   printf("FOVBottomEn ==> %d\n",InPckt->GetFOVBottomEn());
   printf("MirrorMode ==> %d\n",InPckt->GetMirrorMode());
   printf("PixelReplicateMode ==> %d\n",InPckt->GetPixelReplicateMode());
   printf("ProjectionType ==> %d\n",InPckt->GetProjectionType());
   printf("Reorder ==> %d\n",InPckt->GetReorder());
   printf("ViewType ==> %d\n",InPckt->GetViewType());
   printf("FOVNear ==> %f\n",InPckt->GetFOVNear());
   printf("FOVFar ==> %f\n",InPckt->GetFOVFar());
   printf("FOVLeft ==> %f\n",InPckt->GetFOVLeft());
   printf("FOVRight ==> %f\n",InPckt->GetFOVRight());
   printf("FOVTop ==> %f\n",InPckt->GetFOVTop());
   printf("FOVBottom ==> %f\n",InPckt->GetFOVBottom());


}