projects
/
MicroTrace.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
51f98659ef3a0461b7b01d9c1ecb287c59f36042
[MicroTrace.git]
/
Camera.hxx
1
#ifndef CAMERA_HXX
2
#define CAMERA_HXX
3
4
#include "Ray.hxx"
5
6
class Camera
7
{
8
public:
9
Camera(int resX, int resY);
10
virtual ~Camera();
11
virtual bool InitRay(float x, float y, Ray &ray) = 0;
12
13
int resX() const;
14
int resY() const;
15
protected:
16
Camera();
17
18
int m_resX, m_resY;
19
};
20
#endif
This page took
0.04353 seconds
and
3
git commands to generate.