Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 openSCAD 中有一个命令可以将 3D 模型投影到 2D 表面。我在JSCAD 文档 中找不到有关此命令的任何信息。
有没有办法在 openJSCAD 中做同样的事情。
是的,可以做到,我用一个简单的立方体来演示:
function main () { var z0basis = CSG.OrthoNormalBasis.Z0Plane(); return (cube({size: 10, center: true})).projectToOrthoNormalBasis(z0basis); }