1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-01 12:30:33 +02:00

update doc

This commit is contained in:
Justin Lin
2020-12-13 09:58:20 +08:00
parent 9d55761f09
commit 0e70941db2
3 changed files with 13 additions and 1 deletions

View File

@@ -231,7 +231,7 @@ These examples incubate dotSCAD and dotSCAD refactors these examples. See [examp
### 3D Module
- polyhedron_hull
- [polyhedron_hull](https://openhome.cc/eGossip/OpenSCAD/lib2x-polyhedron_hull.html)
### Path

View File

@@ -2,6 +2,8 @@
Create a convex polyhedron by hulling a list of points.
**Since:** 2.5
## Parameters
- `points` : A list of 3D points.

View File

@@ -1,3 +1,13 @@
/**
* polyhedron_hull.scad
*
* @copyright Justin Lin, 2020
* @license https://opensource.org/licenses/lgpl-3.0.html
*
* @see https://openhome.cc/eGossip/OpenSCAD/lib2x-polyhedron_hull.html
*
**/
use <__comm__/_convex_hull3.scad>;
module polyhedron_hull(points) {