我想通过编程方式生成点polyhedron,在OpenSCAD中创建vector。但是,为矩阵赋值......
p = [1,0,0];
r = [[], [], [], [], [], [] ];
for( i=[0:5] )
{
echo("i=",i);
r[i] = [0,1];
}
...产生语法错误:
ERROR: Parser error in line 7: syntax error
ERROR: Compilation failed!
我犯了错误(哪个)或这些类型真的只是只读(没有索引分配)?
答案 0 :(得分:1)
在分配r
之后无法对其进行修改。
有关可生成列表的表达式,请参阅https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/List_Comprehensions。
示例:
points = [ for (a = [0 : 5 : 359]) [ 20 * sin(a), 10 * cos(a) ] ];
polygon(points);