1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-17 20:11:50 +02:00

deprecate bezier_surface and function_grapher

This commit is contained in:
Justin Lin
2021-07-03 11:56:13 +08:00
parent 52f3d10175
commit 5f091f84a3
2 changed files with 2 additions and 0 deletions

View File

@@ -13,6 +13,7 @@ use <matrix/m_transpose.scad>;
function bezier_surface(t_step, ctrl_pts) =
let(
_ = echo("`bezier_surface` is deprecated since 3.1. Use `sf_splines` instead."),
leng_ctrl_pts = len(ctrl_pts),
pts = [
for(i = 0; i < leng_ctrl_pts; i = i + 1)

View File

@@ -14,6 +14,7 @@ use <path_extrude.scad>;
use <shape_circle.scad>;
module function_grapher(points, thickness = 1, style = "FACES") {
echo("`function_grapher` is deprecated since 3.1. Use `sf_thicken` instead."),
rows = len(points);
columns = len(points[0]);