mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-08-05 14:27:45 +02:00
add doc
This commit is contained in:
BIN
docs/images/lib2x-polyhedron_hull-1.JPG
Normal file
BIN
docs/images/lib2x-polyhedron_hull-1.JPG
Normal file
Binary file not shown.
After Width: | Height: | Size: 27 KiB |
23
docs/lib2x-polyhedron_hull.md
Normal file
23
docs/lib2x-polyhedron_hull.md
Normal 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]
|
||||||
|
]);
|
||||||
|
|
||||||
|

|
Reference in New Issue
Block a user