forked from miho/JCSG
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathRoundedCube.java
More file actions
250 lines (212 loc) · 6.23 KB
/
RoundedCube.java
File metadata and controls
250 lines (212 loc) · 6.23 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
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package eu.mihosoft.vrl.v3d;
import static eu.mihosoft.vrl.v3d.Transform.unity;
import java.util.List;
import eu.mihosoft.vrl.v3d.parametrics.LengthParameter;
// Auto-generated Javadoc
/**
* The Class RoundedCube.
*
* @author Michael Hoffer <info@michaelhoffer.de>
*/
public class RoundedCube extends Primitive {
/**
* Cube dimensions.
*/
private Vector3d dimensions;
/** The center. */
private Vector3d center;
/** The centered. */
private boolean centered=true;
/** The properties. */
private final PropertyStorage properties = new PropertyStorage();
/** The corner radius. */
private double cornerRadius = 0.1;
/** The resolution. */
private int resolution = 8;
/**
* Constructor. Creates a new rounded cube with center {@code [0,0,0]} and
* dimensions {@code [1,1,1]}.
*/
public RoundedCube() {
center = new Vector3d(0, 0, 0);
dimensions = new Vector3d(1, 1, 1);
}
/**
* Constructor. Creates a new rounded cube with center {@code [0,0,0]} and
* dimensions {@code [size,size,size]}.
*
* @param size size
*/
public RoundedCube(double size) {
center = new Vector3d(0, 0, 0);
dimensions = new Vector3d(size, size, size);
}
// public RoundedCube(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 RoundedCube(LengthParameter size) {
// this(size,size,size);
// }
/**
* Constructor. Creates a new rounded cuboid with the specified center and
* dimensions.
*
* @param center center of the cuboid
* @param dimensions cube dimensions
*/
public RoundedCube(Vector3d center, Vector3d dimensions) {
this.center = center;
this.dimensions = dimensions;
}
/**
* Constructor. Creates a new rounded cuboid with center {@code [0,0,0]}
* and with the specified dimensions.
*
* @param w width
* @param h height
* @param d depth
*/
public RoundedCube(double w, double h, double d) {
this(Vector3d.ZERO, new Vector3d(w, h, d));
}
/* (non-Javadoc)
* @see eu.mihosoft.vrl.v3d.Primitive#toPolygons()
*/
@Override
public List<Polygon> toPolygons() {
CSG spherePrototype =
new Sphere(getCornerRadius(), getResolution()*2, getResolution()).toCSG();
double x = dimensions.x / 2.0 - getCornerRadius();
double y = dimensions.y / 2.0 - getCornerRadius();
double z = dimensions.z / 2.0 - getCornerRadius();
CSG sphere1 = spherePrototype.transformed(unity().translate(-x, -y, -z));
CSG sphere2 = spherePrototype.transformed(unity().translate(x, -y, -z));
CSG sphere3 = spherePrototype.transformed(unity().translate(x, y, -z));
CSG sphere4 = spherePrototype.transformed(unity().translate(-x, y, -z));
CSG sphere5 = spherePrototype.transformed(unity().translate(-x, -y, z));
CSG sphere6 = spherePrototype.transformed(unity().translate(x, -y, z));
CSG sphere7 = spherePrototype.transformed(unity().translate(x, y, z));
CSG sphere8 = spherePrototype.transformed(unity().translate(-x, y, z));
List<Polygon> result = CSG.hullAll(sphere1,
sphere2, sphere3, sphere4,
sphere5, sphere6, sphere7, sphere8).getPolygons();
if (!centered) {
Transform centerTransform = Transform.unity().translate(dimensions.x / 2.0, dimensions.y / 2.0, dimensions.z / 2.0);
for (Polygon p : result) {
try {
p.transform(centerTransform);
} catch (ColinearPointsException e) {
throw new RuntimeException(e);
}
}
}
return result;
}
/* (non-Javadoc)
* @see eu.mihosoft.vrl.v3d.Primitive#getProperties()
*/
@Override
public PropertyStorage getProperties() {
return properties;
}
/**
* Gets the center.
*
* @return the center
*/
public Vector3d getCenter() {
return center;
}
/**
* Sets the center.
*
* @param center the center to set
*/
public void setCenter(Vector3d center) {
this.center = center;
}
/**
* Gets the dimensions.
*
* @return the dimensions
*/
public Vector3d getDimensions() {
return dimensions;
}
/**
* Sets the dimensions.
*
* @param dimensions the dimensions to set
*/
public void setDimensions(Vector3d dimensions) {
this.dimensions = dimensions;
}
/**
* Defines that this cube will not be centered.
* @return this cube
*/
public RoundedCube noCenter() {
centered = false;
return this;
}
/**
* Gets the resolution.
*
* @return the resolution
*/
public int getResolution() {
return resolution;
}
/**
* Sets the resolution.
*
* @param resolution the resolution to set
*/
public void setResolution(int resolution) {
this.resolution = resolution;
}
/**
* Resolution.
*
* @param resolution the resolution to set
* @return this cube
*/
public RoundedCube resolution(int resolution) {
this.resolution = resolution;
return this;
}
/**
* Gets the corner radius.
*
* @return the corner radius
*/
public double getCornerRadius() {
return cornerRadius;
}
/**
* Sets the corner radius.
*
* @param cornerRadius the corner radius to set
*/
public void setCornerRadius(double cornerRadius) {
this.cornerRadius = cornerRadius;
}
/**
* Corner radius.
*
* @param cornerRadius the corner radius to set
* @return this cube
*/
public RoundedCube cornerRadius(double cornerRadius) {
this.cornerRadius = cornerRadius;
return this;
}
}