removed obsolete files, make CDTestFramework compile again

This commit is contained in:
erwin.coumans
2008-05-25 07:32:44 +00:00
parent 88ee734bfb
commit 3726af466e
9 changed files with 14 additions and 892 deletions

View File

@@ -19,6 +19,8 @@ subject to the following restrictions:
static const float gCamSpeed = 1.0f;
static Point gEye(3.0616338f, 1.1985892f, 2.5769043f);
static Point gDir(-0.66853905,-0.14004262,-0.73037237);
//static Point gEye(140, 105, 105);
//static Point gDir(-1,-1,-1);
static Point gN;
static float gFOV = 60.0f;
@@ -27,6 +29,11 @@ const Point& GetCameraPos()
return gEye;
}
const Point& GetCameraDir()
{
return gDir;
}
void MoveCameraForward()
{
gEye += gDir * gCamSpeed;