如何使用 openSCAD 保存计算发生在循环内部的结果?
How to save the results of a computation happing inside loop with openSCAD?
当我在循环中计算某些东西时,以后如何使用它?
您可以在列表理解的帮助下保存结果。
values = [0, 1, 2, 4, 8, 16];
result = [ for(i = [0 : len(values) - 1]) [i, values[i]] ];
echo(result);
查看 the manual 了解更多信息。
当我在循环中计算某些东西时,以后如何使用它?
您可以在列表理解的帮助下保存结果。
values = [0, 1, 2, 4, 8, 16];
result = [ for(i = [0 : len(values) - 1]) [i, values[i]] ];
echo(result);
查看 the manual 了解更多信息。