mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-01-16 13:50:05 +01:00
431 B
431 B
polyhedron_hull
Create a convex polyhedron by hulling a list of points. It avoids using hull
and small 3D primitives to create the polyhedron.
Since: 2.5
Parameters
points
: A list of 3D points.
Examples
use <polyhedron_hull.scad>
polyhedron_hull([
[1, 1, 1],
[1, 1, 0],
[-1, 1, 0],
[-1, -1, 0],
[1, -1, 0],
[0, 0, 1],
[0, 0, -1]
]);