blob: a0133666ff41e21ac04ecce0d41b6b93224624c5 (
plain) (
blame)
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
|
//=============================================================================
// Copyright (C) 2002 Radical Entertainment Ltd. All rights reserved.
//
// File: mayacamera.h
//
// Description: Blahblahblah
//
// History: 22/07/2002 + Created -- CaryBrisebois
//
//=============================================================================
#ifndef MAYACAMERA_H
#define MAYACAMERA_H
//========================================
// Nested Includes
//========================================
#include "precompiled/PCH.h"
#include <radmath/radmath.hpp>
//========================================
// Forward References
//========================================
//=============================================================================
//
// Synopsis: Blahblahblah
//
//=============================================================================
class MayaCamera
{
public:
MayaCamera();
virtual ~MayaCamera();
void EnsureCamExists();
void Set( const rmt::Vector& position, const rmt::Vector& target, const rmt::Vector& vup, float fov );
private:
//Prevent wasteful constructor creation.
MayaCamera( const MayaCamera& mayacamera );
MayaCamera& operator=( const MayaCamera& mayacamera );
};
#endif //MAYACAMERA_H
|