1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-09-25 05:51:41 +02:00
Files
dotSCAD/docs/lib2x-polyhedron_hull.md
Justin Lin 0e70941db2 update doc
2020-12-13 09:58:20 +08:00

359 B

polyhedron_hull

Create a convex polyhedron by hulling a list of points.

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]
]);

polyhedron_hull