gpt4 book ai didi

openscad - 带有多个参数的translate()有什么作用?

转载 作者:行者123 更新时间:2023-12-02 21:59:24 27 4
gpt4 key购买 nike

我不小心遗漏了翻译向量中的方括号。 OpenSCAD 没有引发错误,而是默默地忽略了该错误。

带有多个参数的translate()有什么特殊含义吗?第二行应该做什么?我附上了一张显示我得到的结果的图片。

translate([5,5,-25]) color("red") cube([10,10,50]);
translate(5,5,-25) color("blue") cube([10,10,50]);

enter image description here

最佳答案

平移将一个对象从一个笛卡尔点“移动”到另一个点。

translate 函数的第一个参数始终需要一个数组(名为 v,包含 x、y 和 z 坐标的数组)。openscad 中的任何函数调用都可以在没有参数名称的情况下编写,除非您确实使用不同的参数位置。因此,以翻译函数为例:

translate(0)
// ignored, first parameter is not an array.
cube([5,5,5]);

translate(v=5)
// ignored, v is not an array.
cube([5,5,5]);

translate([10,10,10])
// normal call.
cube([5,5,5]);

translate(v=[10,10,10])
// named parameter call.
cube([5,5,5]);

translate(1,2,3,4,5,6,7,8,9,0,infinite,v=[15,15,15])
// it works! we named the parameter, so
// openscad doesn't care about it's position!
cube([5,5,5]);

translate(1,2,3,4,5,6,7,8,9,0,[20,20,20])
// ignored, the first parameter is not an array
// AND v is not defined in this call!
cube([5,5,5]);

// At this point there are 3 cubes at the same position
// and 3 translated cubes!

test();
test(1);
test(1,2);
test(1,2,3);
test(1,2,3,4);


// 01) There is no function overwrite in openscad (it doesn't care about the number of parameters to
// 02) The function names are resolved at compile time (only the last one will be recognized).
module test(p1,p2,p3) echo( "test3" );
module test(p1,p2) echo( "test2" );
module test(p1) echo( "test1" );

OpenScad 在任何地方都使用此语法,而不仅仅是在翻译函数调用中。

现在你的两行:

translate([5,5,-25])      // executed, cube moved to x=5,y=5,z=-25
color("red") // executed
cube([10,10,50]); // executed, default creation pos x=0,y=0,z=0

translate(5,5,-25) // ignored, cube not moved.
color("blue") // executed
cube([10,10,50]); // executed, default creation pos x=0,y=0,z=0

关于openscad - 带有多个参数的translate()有什么作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17203974/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com