在cad中输入excel表格的坐标显示点无效是怎么回事?

2025-01-25 02:46:29
推荐回答(2个)
回答1:

点号 y x
1 111 222
2 333 444
3 555 666
4 777 888

1,用excel生成一列连接字符串
="(command ""circle"" '("&F20&" "&G20&") 10)"
F20为你的y坐标,G20为x坐标

新一列结果:
(command "circle" '(111 222) 10)
(command "circle" '(333 444) 10)
(command "circle" '(555 666) 10)
(command "circle" '(777 888) 10)

2,拷贝这一列所有的东东到cad的命令行,就可以在相应点位上画半径为10的圆

回答2:

在Excel中的坐标与CAD坐标是相反的,输入的时候要注意了。输入时中间用“,”分开。