-
Notifications
You must be signed in to change notification settings - Fork 0
/
viewplane.h
119 lines (78 loc) · 3.38 KB
/
viewplane.h
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#ifndef viewplane_h
#define viewplane_h
//******************************************************************************//
// //
// Viewplane.h - header file for viewplane object. The viewplane is //
// a "window" onto the 3D world which has a "blank" image stretched //
// across it. This uses TGAimage to record the image that is ray traced. //
// //
//******************************************************************************//
#include "tgaimage.h"
#include "point3d.h"
class Viewplane {
private:
TGAimage* image; // image file used for output
int image_x, image_y; // size of image
double pixel_x, pixel_y; // size of pixel stretched onto viewplane
const double view_x; // x size of view plane
const double view_y; // y size of view plane
Point3d* bot_left; // bottom left of image - used for reference (z plane)
public:
Viewplane(double xref, double yref, double zref, int img_x, int img_y);
//
// Constructor
///////////////////////////////////////////////////////////////////////////
~Viewplane();
//
// Deconstructor
///////////////////////////////////////////////////////////////////////////
void setBottomLeft(double x, double y, double z);
//
// SetTopLeft - sets the top left of the viewplane (z plane)
///////////////////////////////////////////////////////////////////////////
double getxSize();
//
// GetxSize - returns x size of viewplane
///////////////////////////////////////////////////////////////////////////
double getySize();
//
// GetySize - returns y size of viewplane
///////////////////////////////////////////////////////////////////////////
double getPixelxSize();
//
// GetPixelSize - returns size of pixel on the viewplane
///////////////////////////////////////////////////////////////////////////
double getPixelySize();
//
// GetPixelSize - returns size of pixel on the viewplane
///////////////////////////////////////////////////////////////////////////
double getBottomLeftx();
//
// GetbottomLeftx - returns x pos of bottom left of viewplane (z= 0 plane)
///////////////////////////////////////////////////////////////////////////
double getBottomLefty();
//
// GetbottomLefty - returns y pos of bot left of viewplane (z= 0 plane)
///////////////////////////////////////////////////////////////////////////
double getBottomLeftz();
//
// GetbottomLeftz - returns z pos of bot left of viewplane (z= 0 plane)
///////////////////////////////////////////////////////////////////////////
void setImageSize(int xsize, int ysize);
//
// setImageSize - changes the size of the output image
///////////////////////////////////////////////////////////////////////////
int getImagexSize();
//
// getImagexSize - returns x size of image
///////////////////////////////////////////////////////////////////////////
int getImageySize();
//
// getImageySize - returns y size of image
///////////////////////////////////////////////////////////////////////////
void colourPixel(int red, int green, int blue, int x, int y);
//
// colourPixel - "colours in" the pixel x,y in the viewplane (image)
///////////////////////////////////////////////////////////////////////////
};
#endif