Subversion Repositories gelsvn

Rev

Rev 322 | Rev 630 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 322 Rev 616
Line 6... Line 6...
6
#include "CGLA/Vec2f.h"
6
#include "CGLA/Vec2f.h"
7
#include "CGLA/Vec3f.h"
7
#include "CGLA/Vec3f.h"
8
 
8
 
9
#include "Geometry/Ray.h"
9
#include "Geometry/Ray.h"
10
 
10
 
11
const float NEAR_PLANE = 1.0e-2;
11
const float NEAR_PLANE = 1.0e-2f;
12
const float FAR_PLANE = 1.0e8;
12
const float FAR_PLANE = 1.0e8f;
13
 
13
 
14
class Camera
14
class Camera
15
{
15
{
16
public:
16
public:
17
  
17