CMU462 Library  1.0
15-462/15-662: Computer Graphics (Fall 2015)
CMU462.h
1 #ifndef CMU462_H
2 #define CMU462_H
3 
4 #include "misc.h"
5 
6 // CMU462 Forward Declarations //
7 
8 namespace CMU462 {
9 
10 class Vector2D;
11 class Vector3D;
12 class Vector4D;
13 
14 class Matrix3x3;
15 class Matrix4x4;
16 
17 class Quaternion;
18 class Complex;
19 
20 class Color;
21 class Spectrum;
22 
23 class Renderer;
24 class OSDText;
25 class Viewer;
26 class Timer;
27 
28 } // namespace CMU462
29 
30 #endif // CMU462_H
Definition: CMU462.h:8