forked from miho/JCSG
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCube.java
More file actions
231 lines (211 loc) · 6.77 KB
/
Cube.java
File metadata and controls
231 lines (211 loc) · 6.77 KB
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
/**
* Cube.java
*
* Copyright 2014-2014 Michael Hoffer info@michaelhoffer.de. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY Michael Hoffer info@michaelhoffer.de "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL Michael Hoffer info@michaelhoffer.de OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are
* those of the authors and should not be interpreted as representing official
* policies, either expressed or implied, of Michael Hoffer
* info@michaelhoffer.de.
*/
package eu.mihosoft.vrl.v3d;
import java.util.ArrayList;
import java.util.List;
import eu.mihosoft.vrl.v3d.parametrics.LengthParameter;
import eu.mihosoft.vrl.v3d.parametrics.Parameter;
// Auto-generated Javadoc
/**
* An axis-aligned solid cuboid defined by {@code center} and
* {@code dimensions}.
*
* @author Michael Hoffer <info@michaelhoffer.de>
*/
public class Cube extends Primitive {
/**
* Center of this cube.
*/
private Vector3d center;
/**
* Cube dimensions.
*/
private Vector3d dimensions;
/** The centered. */
private boolean centered = true;
/** The properties. */
private final PropertyStorage properties = new PropertyStorage();
/**
* Constructor. Creates a new cube with center {@code [0,0,0]} and
* dimensions {@code [1,1,1]}.
*/
public Cube() {
center = new Vector3d(0, 0, 0);
dimensions = new Vector3d(1, 1, 1);
}
/**
* Constructor. Creates a new cube with center {@code [0,0,0]} and
* dimensions {@code [size,size,size]}.
*
* @param size size
*/
public Cube(double size) {
center = new Vector3d(0, 0, 0);
dimensions = new Vector3d(size, size, size);
}
/**
* Constructor. Creates a new cuboid with the specified center and
* dimensions.
*
* @param center center of the cuboid
* @param dimensions cube dimensions
*/
public Cube(Vector3d center, Vector3d dimensions) {
this.center = center;
this.dimensions = dimensions;
}
/**
* Constructor. Creates a new cuboid with center {@code [0,0,0]} and with
* the specified dimensions.
*
* @param w width
* @param h height
* @param d depth
*/
public Cube(double w, double h, double d) {
this(Vector3d.ZERO, new Vector3d(w, h, d));
}
// public Cube(LengthParameter w, LengthParameter h, LengthParameter d) {
// this(Vector3d.ZERO, new Vector3d(w.getMM(), h.getMM(), d.getMM()));
//// parametrics.add(w);
//// parametrics.add(h);
//// parametrics.add(d);
// }
// public Cube(LengthParameter size) {
// this(size,size,size);
// }
/* (non-Javadoc)
* @see eu.mihosoft.vrl.v3d.Primitive#toPolygons()
*/
@Override
public List<Polygon> toPolygons() {
if(dimensions.x<=0)
throw new NumberFormatException("X can not be negative");
if(dimensions.y<=0)
throw new NumberFormatException("Y can not be negative");
if(dimensions.z<=0)
throw new NumberFormatException("Z can not be negative");
int[][][] a = {
// position // normal
{{0, 4, 6, 2}, {-1, 0, 0}},
{{1, 3, 7, 5}, {+1, 0, 0}},
{{0, 1, 5, 4}, {0, -1, 0}},
{{2, 6, 7, 3}, {0, +1, 0}},
{{0, 2, 3, 1}, {0, 0, -1}},
{{4, 5, 7, 6}, {0, 0, +1}}
};
List<Polygon> polygons = new ArrayList<>();
for (int[][] info : a) {
List<Vertex> vertices = new ArrayList<>();
for (int i : info[0]) {
Vector3d pos = new Vector3d(
center.x + dimensions.x * (1 * Math.min(1, i & 1) - 0.5),
center.y + dimensions.y * (1 * Math.min(1, i & 2) - 0.5),
center.z + dimensions.z * (1 * Math.min(1, i & 4) - 0.5)
);
vertices.add(new Vertex(pos));
}
try {
polygons.addAll( Polygon.fromVertex(vertices, properties));
} catch (ColinearPointsException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (NonFlatPolygonException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
if (!centered) {
Transform centerTransform = Transform.unity().translate(dimensions.x / 2.0, dimensions.y / 2.0, dimensions.z / 2.0);
for (Polygon p : polygons) {
try {
p.transform(centerTransform);
} catch (ColinearPointsException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
return polygons;
}
/**
* Gets the center.
*
* @return the center
*/
public Vector3d getCenter() {
return center;
}
/**
* Sets the center.
*
* @param center the center to set
*/
public Cube setCenter(Vector3d center) {
this.center = center;
return this;
}
/**
* Gets the dimensions.
*
* @return the dimensions
*/
public Vector3d getDimensions() {
return dimensions;
}
/**
* Sets the dimensions.
*
* @param dimensions the dimensions to set
*/
public Cube setDimensions(Vector3d dimensions) {
this.dimensions = dimensions;
return this;
}
/* (non-Javadoc)
* @see eu.mihosoft.vrl.v3d.Primitive#getProperties()
*/
@Override
public PropertyStorage getProperties() {
return properties;
}
/**
* Defines that this cube will not be centered.
* @return this cube
*/
public Cube noCenter() {
centered = false;
return this;
}
}