1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-01 12:30:33 +02:00
This commit is contained in:
Justin Lin
2020-12-13 09:51:18 +08:00
parent b8a16c5af4
commit 9d55761f09
2 changed files with 23 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

View File

@@ -0,0 +1,23 @@
# polyhedron_hull
Create a convex polyhedron by hulling a list of points.
## 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]
]);
![polyhedron_hull](images/lib2x-polyhedron_hull-1.JPG)