-
Notifications
You must be signed in to change notification settings - Fork 0
/
viewplane.cpp
181 lines (133 loc) · 3.61 KB
/
viewplane.cpp
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
//**********************************************************//
// //
// Viewplane.cpp - member functions for viewplane class //
// //
//**********************************************************//
#include "viewplane.h"
///////////////////////////////////////////////////////////////////////////////////
//
// Constructor
//
Viewplane::Viewplane(double xref, double yref, double zref, int img_x, int img_y)
:view_x(10.24), view_y(7.68)
{
bot_left = new Point3d(xref, yref, zref);
image_x = img_x;
image_y = img_y;
pixel_x = view_x / image_x;
pixel_y = view_y / image_y;
image = new TGAimage("output.tga");
image->createNew(image_x, image_y);
}
///////////////////////////////////////////////////////////////////////////////////
//
// Deconstructor
//
Viewplane::~Viewplane()
{
delete bot_left;
image->writeImage(); // save results to file
delete image;
}
///////////////////////////////////////////////////////////////////////////////////
//
// getPixelxSize - returns pixel x size
//
double Viewplane::getPixelxSize()
{
return pixel_x;
}
///////////////////////////////////////////////////////////////////////////////////
//
// getPixelySize - returns pixel y size
//
double Viewplane::getPixelySize()
{
return pixel_y;
}
///////////////////////////////////////////////////////////////////////////////////
//
// getxSize - returns viewplane x size
//
double Viewplane::getxSize()
{
return view_x;
}
///////////////////////////////////////////////////////////////////////////////////
//
// getySize - returns viewplane y size
//
double Viewplane::getySize()
{
return view_y;
}
///////////////////////////////////////////////////////////////////////////////////
//
// getImagexSize - returns image x size
//
int Viewplane::getImagexSize()
{
return image_x;
}
///////////////////////////////////////////////////////////////////////////////////
//
// getImageySize - returns image y size
//
int Viewplane::getImageySize()
{
return image_y;
}
///////////////////////////////////////////////////////////////////////////////////
//
// getbottomLeftx - returns x co-ord of bottom left of viewplane
//
double Viewplane::getBottomLeftx()
{
return bot_left->x;
}
///////////////////////////////////////////////////////////////////////////////////
//
// getbottomLefty - returns y co-ord of bottom left of viewplane
//
double Viewplane::getBottomLefty()
{
return bot_left->y;
}
///////////////////////////////////////////////////////////////////////////////////
//
// getbottomLeftz - returns z co-ord of bottom left of viewplane
//
double Viewplane::getBottomLeftz()
{
return bot_left->z;
}
///////////////////////////////////////////////////////////////////////////////////
//
// setImageSize - sets the size of the image in pixels
//
void Viewplane::setImageSize(int xsize, int ysize)
{
delete image; // delete current image object
image_x = xsize;
image_y = ysize;
image = new TGAimage("output.tga");
image->createNew(image_x, image_y);
}
///////////////////////////////////////////////////////////////////////////////////
//
// setBottomLeft - sets co-ords of bottom left of viewplane
//
void Viewplane::setBottomLeft(double x, double y, double z)
{
delete bot_left;
bot_left = new Point3d(x, y, z);
}
///////////////////////////////////////////////////////////////////////////////////
//
// colourPixel - sets the colour of pixel x,y on the viewplane
//
void Viewplane::colourPixel(int red, int green, int blue, int x, int y)
{
// to do - check image exists first
image->setPixel(red, green, blue, x, y);
}