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:
@@ -13,6 +13,7 @@ use <matrix/m_transpose.scad>;
|
|||||||
|
|
||||||
function bezier_surface(t_step, ctrl_pts) =
|
function bezier_surface(t_step, ctrl_pts) =
|
||||||
let(
|
let(
|
||||||
|
_ = echo("`bezier_surface` is deprecated since 3.1. Use `sf_splines` instead."),
|
||||||
leng_ctrl_pts = len(ctrl_pts),
|
leng_ctrl_pts = len(ctrl_pts),
|
||||||
pts = [
|
pts = [
|
||||||
for(i = 0; i < leng_ctrl_pts; i = i + 1)
|
for(i = 0; i < leng_ctrl_pts; i = i + 1)
|
||||||
|
@@ -14,6 +14,7 @@ use <path_extrude.scad>;
|
|||||||
use <shape_circle.scad>;
|
use <shape_circle.scad>;
|
||||||
|
|
||||||
module function_grapher(points, thickness = 1, style = "FACES") {
|
module function_grapher(points, thickness = 1, style = "FACES") {
|
||||||
|
echo("`function_grapher` is deprecated since 3.1. Use `sf_thicken` instead."),
|
||||||
|
|
||||||
rows = len(points);
|
rows = len(points);
|
||||||
columns = len(points[0]);
|
columns = len(points[0]);
|
||||||
|
Reference in New Issue
Block a user