forked from miho/JCSG
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathSphere.java
More file actions
292 lines (264 loc) · 8.22 KB
/
Sphere.java
File metadata and controls
292 lines (264 loc) · 8.22 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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
/**
* Sphere.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;
// Auto-generated Javadoc
/**
* A solid sphere.
*
* Tthe tessellation along the longitude and latitude directions can be
* controlled via the {@link #numSlices} and {@link #numStacks} parameters.
*
* @author Michael Hoffer <info@michaelhoffer.de>
*/
public class Sphere extends Primitive {
private static final int NUM_SLICES = 16;
private static final int NUM_STACKS = 8;
/** The center. */
private Vector3d center;
/** The radius. */
private double radius;
/** The num slices. */
private int numSlices;
/** The num stacks. */
private int numStacks;
/** The properties. */
private final PropertyStorage properties = new PropertyStorage();
/**
* Constructor. Creates a sphere with radius 1, 16 slices and 8 stacks and
* center [0,0,0].
*
*/
public Sphere() {
init();
}
/**
* Constructor. Creates a sphere with the specified radius, 16 slices and 8
* stacks and center [0,0,0].
*
* @param radius sphare radius
*/
public Sphere(double radius) {
init();
this.radius = radius;
}
// public Cube(LengthParameter w, LengthParameter h, LengthParameter d) {
// this(Vector3d.ZERO, new Vector3d(w.getMM(), h.getMM(), d.getMM()));
//
// }
// public Sphere(LengthParameter size) {
// this(size.getMM());
// parametrics.add(size);
// }
// public Sphere(LengthParameter size, int numSlices, int numStacks) {
// this(size.getMM(), numSlices, numStacks);
// parametrics.add(size);
// }
/**
* Constructor. Creates a sphere with the specified radius, number of slices
* and stacks.
*
* @param radius sphare radius
* @param numSlices number of slices
* @param numStacks number of stacks
*/
public Sphere(double radius, int numSlices, int numStacks) {
init();
this.radius = radius;
this.setNumSlices(numSlices);
this.setNumStacks(numStacks);
}
/**
* Constructor. Creates a sphere with the specified center, radius, number
* of slices and stacks.
*
* @param center center of the sphere
* @param radius sphere radius
* @param numSlices number of slices
* @param numStacks number of stacks
*/
public Sphere(Vector3d center, double radius, int numSlices, int numStacks) {
this.center = center;
this.radius = radius;
this.setNumSlices(numSlices);
this.setNumStacks(numStacks);
}
/**
* Inits the.
*/
private void init() {
center = new Vector3d(0, 0, 0);
radius = 1;
setNumSlices(NUM_SLICES);
setNumStacks(NUM_STACKS);
}
/**
* Sphere vertex.
*
* @param c the c
* @param r the r
* @param theta the theta
* @param phi the phi
* @return the vertex
*/
private Vertex sphereVertex(Vector3d c, double r, double theta, double phi) {
theta *= Math.PI * 2;
phi *= Math.PI;
Vector3d dir = new Vector3d(
Math.cos(theta) * Math.sin(phi),
Math.cos(phi),
Math.sin(theta) * Math.sin(phi)
);
return new Vertex(c.plus(dir.times(r)));
}
/* (non-Javadoc)
* @see eu.mihosoft.vrl.v3d.Primitive#toPolygons()
*/
@Override
public List<Polygon> toPolygons() {
if(radius<=0)
throw new NumberFormatException("radius can not be negative");
List<Polygon> polygons = new ArrayList<>();
for (int i = 0; i < getNumSlices(); i++) {
for (int j = 0; j < getNumStacks(); j++) {
final List<Vertex> vertices = new ArrayList<>();
vertices.add(
sphereVertex(center, radius, i / (double) getNumSlices(),
j / (double) getNumStacks())
);
if (j > 0) {
vertices.add(
sphereVertex(center, radius, (i + 1) / (double) getNumSlices(),
j / (double) getNumStacks())
);
}
if (j < getNumStacks() - 1) {
vertices.add(
sphereVertex(center, radius, (i + 1) / (double) getNumSlices(),
(j + 1) / (double) getNumStacks())
);
}
vertices.add(
sphereVertex(center, radius, i / (double) getNumSlices(),
(j + 1) / (double) getNumStacks())
);
try {
polygons.add(new Polygon(vertices, getProperties()));
} 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 Sphere setCenter(Vector3d center) {
this.center = center;
return this;
}
/**
* Gets the radius.
*
* @return the radius
*/
public double getRadius() {
return radius;
}
/**
* Sets the radius.
*
* @param radius the radius to set
*/
public Sphere setRadius(double radius) {
this.radius = radius;return this;
}
/**
* Gets the num slices.
*
* @return the numSlices
*/
public int getNumSlices() {
return numSlices;
}
/**
* Sets the num slices.
*
* @param numSlices the numSlices to set
*/
public Sphere setNumSlices(int numSlices) {
if(numSlices>(NUM_SLICES*4))
System.out.println("Very large sphere! this may crash!");
this.numSlices = numSlices;return this;
}
/**
* Gets the num stacks.
*
* @return the numStacks
*/
public int getNumStacks() {
return numStacks;
}
/**
* Sets the num stacks.
*
* @param numStacks the numStacks to set
*/
public Sphere setNumStacks(int numStacks) {
if(numStacks>(NUM_STACKS*4))
System.out.println("Very large sphere! this may crash!");
this.numStacks = numStacks;return this;
}
/* (non-Javadoc)
* @see eu.mihosoft.vrl.v3d.Primitive#getProperties()
*/
@Override
public PropertyStorage getProperties() {
return properties;
}
}