1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-09-25 13:59:04 +02:00
Files
dotSCAD/docs/lib2x-polyhedron_hull.md
Justin Lin 9d55761f09 add doc
2020-12-13 09:51:18 +08:00

343 B

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