我输出了DXF文件,但看来直线类型没有保留。我在CIMATRON中定义的虚线,别人读入后却成了实线。
问题看上去似乎是CIMATRON IT不能在DXF中映射线形5(虚线)。所以你需要人为强制编辑default.dpr文件,它位于你的cimit13\dat文件夹下面。用文本编辑器打开该文件,卷帘下拉知道你找到下面的片段。
## Default line-font mapping
##==========================
MAP R-LINE-FONT DASHED 4
MAP R-LINE-FONT HIDDEN 2
MAP R-LINE-FONT CENTER 1
MAP R-LINE-FONT PHANTOM 1
MAP R-LINE-FONT DOT 5
MAP R-LINE-FONT DASHDOT 3
MAP R-LINE-FONT BORDER 1
MAP R-LINE-FONT DIVIDE 1
MAP R-LINE-FONT CONTINUOUS 1
Now just add the following line to the bottom of this section:
现在只需要在这个片段的底部加上下面的一行。
MAP W-LINE-FONT DOT 5
Now just save the file, and the write your DXF files. Your dotted lines will now have the DOT dxf linefont attribute attached.
保存修改的文件,重新输出你的DXF文件,你的DXF文件将被附加上虚线的属性。
您现在的位置: 