-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSetCamera.h
36 lines (20 loc) · 1.06 KB
/
SetCamera.h
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
/****************************************************************************************
Copyright (C) 2013 Autodesk, Inc.
All rights reserved.
Use of this software is subject to the terms of the Autodesk license agreement
provided at the time of installation or download, or which otherwise accompanies
this software in either electronic or hard copy form.
****************************************************************************************/
#ifndef _SET_CAMERA_H
#define _SET_CAMERA_H
void SetCamera(FbxScene* pScene,
FbxTime& pTime,
FbxAnimLayer* pAnimLayer,
const FbxArray<FbxNode*>& pCameraArray,
int pWindowWidth, int pWindowHeight);
FbxCamera* GetCurrentCamera(FbxScene* pScene);
void CameraZoom(FbxScene* pScene, int pZoomDepth, int pZoomMode);
void CameraOrbit(FbxScene* pScene, FbxVector4 lOrigCamPos, double OrigRoll, int dX, int dY);
void CameraPan(FbxScene* pScene, FbxVector4 lOrigCamPos, FbxVector4 lOrigCamCenter,
double OrigRoll, int dX, int dY);
#endif // #ifndef _SET_CAMERA_H