-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDimension.pde
210 lines (176 loc) · 3.53 KB
/
Dimension.pde
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
class Dimension implements Transformable < Dimension > {
static final String printformat = "(%.2f, %.2f, %.2f)";
float w = 1.0;
float h = 1.0;
float d = 1.0;
Dimension() {
}
Dimension(float scalar) {
set(scalar);
}
Dimension(float w, float h) {
set(w, h);
}
Dimension(float w, float h, float d) {
set(w, h, d);
}
String toString() {
return String.format(printformat,
w, h, d);
}
int compareTo(Dimension dim) {
return d > dim.d ? 1 : d < dim.d ? -1 :
h > dim.h ? 1 : h < dim.h ? -1 :
w > dim.w ? 1 : w < dim.w ? -1 : 0;
}
Dimension add(Dimension dim) {
w += dim.w;
h += dim.h;
d += dim.d;
return this;
}
Dimension add(Dimension a, Dimension b) {
w = a.w + b.w;
h = a.h + b.h;
d = a.d + b.d;
return this;
}
Dimension add(float scalar) {
w += scalar;
h += scalar;
d += scalar;
return this;
}
Dimension add(float w, float h) {
this.w += w;
this.h += h;
return this;
}
Dimension add(float w, float h, float d) {
this.w += w;
this.h += h;
this.d += d;
return this;
}
boolean approx(Dimension dim) {
return approx(dim.w, dim.h, dim.d, EPSILON);
}
boolean approx(Dimension dim, float tolerance) {
return approx(dim.w, dim.h, dim.d, tolerance);
}
boolean approx(float dimw, float dimh, float dimd, float tolerance) {
return approximates(d, dimd, tolerance) &&
approximates(h, dimh, tolerance) &&
approximates(w, dimw, tolerance);
}
Dimension div(Dimension dim) {
w /= dim.w;
h /= dim.h;
d /= dim.d;
return this;
}
Dimension div(Dimension a, Dimension b) {
w = a.w / b.w;
h = a.h / b.h;
d = a.d / b.d;
return this;
}
Dimension div(float scalar) {
scalar = 1.0 / scalar;
w *= scalar;
h *= scalar;
d *= scalar;
return this;
}
Dimension div(float dw, float dh) {
w /= dw;
h /= dh;
return this;
}
Dimension div(float dw, float dh, float dd) {
w /= dw;
h /= dh;
d /= dd;
return this;
}
Dimension mult(Dimension d) {
return mult(d.w, d.h, d.d);
}
Dimension mult(Dimension a, Dimension b) {
w = a.w * b.w;
h = a.h * b.h;
d = a.d * b.d;
return this;
}
Dimension mult(float scalar) {
w *= scalar;
h *= scalar;
d *= scalar;
return this;
}
Dimension mult(float dw, float dh) {
w *= dw;
h *= dh;
return this;
}
Dimension mult(float dw, float dh, float dd) {
w *= dw;
h *= dh;
d *= dd;
return this;
}
Dimension reset() {
set(1.0, 1.0, 1.0);
return this;
}
Dimension set(Dimension scale) {
set(scale.w, scale.h, scale.d);
return this;
}
Dimension set(float scalar) {
this.w = scalar;
this.h = scalar;
this.d = scalar;
return this;
}
Dimension set(float w, float h) {
this.w = w;
this.h = h;
return this;
}
Dimension set(float w, float h, float d) {
this.w = w;
this.h = h;
this.d = d;
return this;
}
Dimension sub(Dimension dim) {
w -= dim.w;
h -= dim.h;
d -= dim.d;
return this;
}
Dimension sub(Dimension a, Dimension b) {
w = a.w - b.w;
h = a.h - b.h;
d = a.d - b.d;
return this;
}
Dimension sub(float scalar) {
w -= scalar;
h -= scalar;
d -= scalar;
return this;
}
Dimension sub(float w, float h) {
this.w -= w;
this.h -= h;
return this;
}
Dimension sub(float w, float h, float d) {
this.w -= w;
this.h -= h;
this.d -= d;
return this;
}
}