Drawing precise angled lines in AutoCAD is easy once you know the key commands and entry methods. This guide shows several beginner-friendly ways to draw a line at a specific angle, plus alternative methods, common errors and fixes, and practical tips to stay accurate.
Introduction
AutoCAD measures angles from the positive X-axis (horizontal) in a counter-clockwise direction. You can create an angled line by entering a length and angle, using relative polar coordinates, enabling Polar tracking, or changing the User Coordinate system (UCS). Below are step-by-step methods and examples for each approach.
Method 1 — Use the LINE command with length<angle input
H3: Steps
- Start the command: type
LINEorL, then press Enter. - Specify the start point by clicking in the drawing area or entering coordinates (e.g.,
10,20). - For the end point, type the length followed by
<and the angle (degrees). Example:50<30draws a 50-unit line at 30° from the X-axis. - Press Enter to finish or continue drawing more segments.
H3: Example
- From the origin, draw a line 100 units at 45°: enter
LINE→ start at0,0→ end point100<45.
Method 2 — Use relative polar coordinates (fast for drawing from an existing point)
H3: Steps
- Start
LINE. - Set the start point (click or enter coordinates).
- Enter the relative polar coordinate by prefacing with
@followed bylength<angle. Example:@75<135. This draws a 75-unit line at 135° starting from the chosen point. - Press Enter or continue.
H3: Notes
- Use
@to indicate a relative move (from the last point). Without@, AutoCAD treats the entry as absolute coordinates.
Method 3 — Use Polar Tracking (visual guidance)
H3: Steps
- Turn on Polar Tracking in the status bar (or press F10, if configured).
- Set the desired angle increments: right-click the Polar Tracking button → Settings → enter an increment such as
15°or30°. - Start
LINE, pick the start point, then move the cursor; the cursor will snap visually to the nearest allowed angle. - Click to set the end point, or type a length then Enter.
H3: When to use
- Ideal for drawing at common angle increments (15°, 30°, 45°, etc.) when you prefer a visual guide.
Method 4 — Use the User Coordinate System (UCS) to change angle reference
H3: Steps
- If you want your 0° direction to align with a different axis, rotate the UCS: type
UCS→ chooseR(Rotate) → specify rotation angle or pick two points. - With UCS rotated, use
LINEand enter lengths/angles relative to the new X-axis. - When done, restore the World UCS with
UCS→W.
H3: When helpful
- Useful when you need several lines measured from an inclined baseline or building face.
Method 5 — Calculate end coordinates (absolute XY method)
H3: Steps
- If you know the start point, length (L), and angle (θ), compute the end point as:
- Xend = Xstart + L * cos(θ)
- Yend = Ystart + L * sin(θ)
- Convert θ to degrees and use a calculator (AutoCAD uses degrees).
- Start
LINE, enter the start point, then type the computed absolute coordinates for the end point (e.g.,134.64, 89.32).
H3: Example
- Start at
10,10, length50, angle30°:
Xend = 10 + 50cos(30°) = 10 + 43.301 = 53.301
Yend = 10 + 50sin(30°) = 10 + 25 = 35
Use end point53.301,35.
Alternative workflows
- Use
XLINEorRAYto create an infinite construction line at a given angle, then draw and trim a finiteLINEto that guide. - Draw a horizontal line, rotate it by a specific angle using the
ROTATEcommand, then use it as a reference. - Enable dynamic input (F12) to type distances and angles directly at the cursor while drawing.
Common errors and how to fix them
Problem: Line appears at the wrong angle.
Fixes:- Verify angle direction: AutoCAD measures from the positive X-axis counter-clockwise. Enter negative angles to go clockwise (e.g.,
-30). - Check if UCS is rotated — reset to World UCS (
UCS→W) or account for UCS rotation. - Ensure Polar Tracking increment isn’t forcing a different angle.
- Verify angle direction: AutoCAD measures from the positive X-axis counter-clockwise. Enter negative angles to go clockwise (e.g.,
Problem: Angle entry not accepted or typed text interpreted wrongly.
Fixes:- Use the
<symbol (less-than) for angle notation:length<angle. - Use
@for relative moves:@length<angle. - Turn on Dynamic Input for guided entry if you prefer.
- Use the
Problem: Units or scale mismatch (line length looks wrong).
Fixes:- Check drawing units (
UNITS) and confirm you’re entering lengths in the correct unit system (inches, mm, etc.). - Ensure there’s no UCS scaling or annotation scale affecting perception.
- Check drawing units (
Problem: Polar Tracking won’t snap to a custom angle.
Fixes:- Open Polar Tracking settings and add the desired angle increments or set additional angles in the dialog.
- Ensure Polar Tracking is actually toggled on in the status bar.
Practical tips for precision and speed
- Keep Object snap (OSNAP) enabled (Endpoint, Midpoint, Intersection) for exact start/end points.
- Use Dynamic Input to type distance and angle directly at the cursor for faster entry.
- Set useful Polar Tracking increments (e.g., 15°, 30°, 45°) to match your common drawing angles.
- Use
@with polar coordinates to chain multiple angled segments quickly. - Create a short construction line (XLINE) at the desired angle as a reusable guide when drawing many features aligned to the same direction.
- If you frequently work from an inclined baseline, define a named UCS so you can switch back and forth quickly.
FAQ
How do I draw a line at a specific angle from an existing point?
Use LINE, pick the existing point as the start, then enter a relative polar coordinate like @length<angle (e.g., @100<30) to draw 100 units at 30° from that point.
What is the correct syntax to enter angle and length?
Type length<angle for absolute input and @length<angle for relative input. The < symbol separates length and angle (for example, 50<45).
Why is my angle going the wrong direction (clockwise instead of counter-clockwise)?
AutoCAD measures angles counter-clockwise from the positive X-axis. To draw clockwise, enter a negative angle (e.g., -30) or compute the equivalent positive angle (e.g., 330°).
How can I draw multiple lines all at the same angle quickly?
Use Polar Tracking set to your desired increment, or draw the first line, then use COPY or ARRAY with rotation, or create a construction XLINE at that angle and snap endpoints to it.
Can I enter angles in radians?
AutoCAD expects degrees by default. If you need radians, convert them to degrees before entering the angle. Check UNITS if your drawing uses different unit settings.
What if my input is ignored or AutoCAD wants coordinates instead?
Make sure you prefix relative entries with @. Also confirm Dynamic Input is on (or off) according to your preference and that you’re using the LINE command prompt correctly.
How do I draw using an inclined reference (not the world X-axis)?
Rotate the UCS to align its X-axis with your reference (UCS → R), draw using angles relative to that axis, then restore the World UCS (UCS → W) when finished.
