How to create an arrow in AutoCAD?
先画一条线段,然后使用命令“DIMALI”来量这条线段的尺寸,如下图所示:
想要改变标尺线的箭头样式,可以打开它的属性,从Arrow1和Arrow2中选择箭头样式:
选择好想要的箭头样式之后,使用命令“EXPLODE”将标尺线炸开,就会将箭头和线段炸开了,这样就得到了箭头。
当命令行消失了,输入命令“COMMANDLINE”可重新显示命令行,输入“COMMANDLINEHIDE”可隐藏命令行。
TD Tip: Absolute Coordinates
The AutoCAD Test Developement team frequently answers questions from AutoCAD users via email. They've offered to share some of their common questions and answers via blog postings. Here's a good one from Dan Kuhmann, AutoCAD Test Development!
Issue:
How do I input absolute coordinates with dynamic input turned on?
Solution:
There are two ways to do this. Coordinate input is relative by default. You can override this setting on an as-needed basis, or change the setting to absolute by default.
To keep the current settings and enter a single absolute coordinate, type # before the coordinates.
Example: #3,3
To change the settings to default to absolute coordinates, set DYNPICOORDS to 1. Now all coordinates entered will be absolute. To input relative coordinates when DYNPICOORDS is 1, type @ before the coordinates (@3,3).
You can also find this in the Drafting Settings dialog (right-click on Dynamic Input icon in the Status Bar, or command: dsettings).
On the Dynamic Input tab, under Pointer Input, click “Settings...” to open the Pointer Input Settings dialog. Change “Relative coordinates” to “Absolute coordinates”.
输入命令"xline"(construction line,构造线),然后输入"B"选择绘制角平分线,依次选择角度的顶点、第一条边、第二条条边即可得到角平分线。(command prompt(命令提示框)中会有提示)
参考:putting dimensions in a 3D Cube
autocad中的度量是与用户坐标系统(UCS)相关联的,所以,如果需要对某个面进行度量,则需要在这个面上建立UCS,建立方式:输入命令"UCS",设置原点、XY平面,然后使用度量命令。这个可以类比到其他的绘制相关的操作,坐标也是相对用户坐标系统(UCS)的,而像其他的注释(Annotation)是与UCS的XY平面平行的。
可使用break或trim命令,不过这两个命令都会删除截取部分外的部分,并不能将另外一部分也保留下来(autocad中的也没有实现这功能的内建命令),AutoLISP: Break Circle提供了这样的功能的代码。
输入label命令。