We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 147eeb0 commit 2c27238Copy full SHA for 2c27238
src/main/java/eu/mihosoft/jcsg/ext/quickhull3d/HullUtil.java
@@ -21,7 +21,15 @@ public class HullUtil {
21
private HullUtil() {
22
throw new AssertionError("Don't instantiate me!", null);
23
}
24
-
+ /**
25
+ * Hull.
26
+ *
27
+ * @param points the points
28
+ * @return the csg
29
+ */
30
+ public static CSG hull(List<eu.mihosoft.vvecmath.Vector3d> points) {
31
+ return hull(points, new PropertyStorage());
32
+ }
33
public static CSG hull(List<eu.mihosoft.vvecmath.Vector3d> points, PropertyStorage storage) {
34
35
Point3d[] hullPoints = points.stream().map((vec) -> new Point3d(vec.x(), vec.y(), vec.z())).toArray(Point3d[]::new);
0 commit comments