作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 openscad 的新手,并试图从 dxf 文件制作 3d 模型。我想将其大小指定为 130x130。我已经能够得到下面的代码,但它仍然没有断言我想要的大小:
linear_extrude(height = 5, center = true, convexity = 10) import (file="bahtinov.dxf");
最佳答案
您可以使用 dxf_dim()
:在你的 dxf 中创建一个进一步的层,例如“尺寸”,绘制一条水平和垂直尺寸线与最大值。宽度分别最大。高度如 Documentation 中所述, 作为标识符,例如“TotalWidth”和“TotalHeight”,这里以我的测试图为例:
获取值:
tw = dxf_dim(file="bahtinov.dxf", name="TotalWidth", layer="dimensions", scale=1);
th = dxf_dim(file="bahtinov.dxf", name="TotalHeight", layer="dimensions", scale=1);
scale([130/tw,130/th,1]) linear_extrude(height = 5, center = true) import(file="bahtinov.dxf", layer="layerName", scale=1);
关于openscad - 如何在 openscad 中指定 dxf 的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18580959/
我是一名优秀的程序员,十分优秀!