1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-12 17:54:18 +02:00
This commit is contained in:
Justin Lin
2020-11-19 08:18:46 +08:00
parent 338d9e989a
commit 1a7940907e
3 changed files with 9 additions and 2 deletions

View File

@@ -1,3 +1,10 @@
to_do: to_do:
- deprecate `trianglate`, use `tri_ear_clipping`. - deprecate `trianglate`, use `tri_ear_clipping`.
next:
- vx_contour
- maze/*
- polygon_hull
- polyhedron_hull

View File

@@ -1,4 +1,4 @@
use <../__comm__/_convex_hull2.scad>; use <__comm__/_convex_hull2.scad>;
module polygon_hull(points) { module polygon_hull(points) {
polygon(_convex_hull2(points)); polygon(_convex_hull2(points));

View File

@@ -1,4 +1,4 @@
use <../__comm__/_convex_hull3.scad>; use <__comm__/_convex_hull3.scad>;
module polyhedron_hull(points) { module polyhedron_hull(points) {
vts_faces = _convex_hull3(points); vts_faces = _convex_hull3(points);