6.2 Absolute, Relative & Polar Coordinates
Key Takeaways
- Absolute coordinates (such as 6,4) always locate a point measured from the drawing's origin (0,0), no matter where the cursor or last point was
- Relative coordinates require the @ symbol (such as @3,2) and measure the offset from the last point entered, not from the origin
- Relative polar coordinates combine the @ symbol with a distance and angle separated by the < symbol (such as @5<90), where angle 0° points along positive X and increases counterclockwise by default
- Dropping the @ symbol from a distance<angle style entry makes AutoCAD interpret it as an absolute polar coordinate measured from the origin, which is rarely what a drafter actually wants mid-drawing
- Because polar angle 90° is straight up and 180° is straight left under AutoCAD's default angle system, entering @5<180 from a point moves five units to the left, not down
Every point you place in AutoCAD — whether you click with the mouse or type on the command line — ultimately becomes a pair of X,Y coordinates. The ACU AutoCAD exam tests three distinct ways to type those coordinates on the command line: absolute, relative, and polar. Each produces a different result depending on where AutoCAD measures from, and mixing them up is one of the most common precision-drafting mistakes a new user makes.
Absolute Coordinates: Always Measured from the Origin
An absolute coordinate is typed as a plain X,Y pair, such as 6,4, with no special symbol in front of it. AutoCAD always measures an absolute coordinate from the drawing's origin point, (0,0), regardless of where the cursor currently sits or where the last point was placed. Typing 6,4 at any point prompt, in any command, at any stage of a drawing, always places that point 6 units along the X-axis and 4 units along the Y-axis from the origin — never from wherever you last clicked.
This makes absolute coordinates predictable but also the least commonly used entry method in real production drafting, because most new points are naturally described relative to something you just drew, not relative to a fixed origin that may be far off-screen.
Relative Coordinates: Measured from the Last Point (@)
A relative coordinate is typed with an @ symbol immediately before the X,Y pair, such as @3,2. The @ symbol tells AutoCAD to measure the following X,Y values as an offset from the last point entered in the current command — not from the origin. If your last point was at (10,5) and you type @3,2, the new point lands at (13,7): 3 units added to the X value and 2 units added to the Y value of the previous point.
Relative coordinates are the everyday workhorse of command-line entry because most drafting steps are naturally described as "move this far from where I just was" rather than "go to this exact spot on the whole drawing."
Relative Polar Coordinates: Distance and Angle (@distance<angle)
A relative polar coordinate combines the @ symbol with a distance and an angle, separated by the < symbol, in the form @distance<angle. Instead of describing an offset as separate X and Y changes, polar entry describes it as "move this far, in this direction" from the last point. Typing @5<90 from a last point of (2,2) moves 5 units in the direction of 90° — straight up in AutoCAD's default angle system — landing at (2,7).
AutoCAD's Default Angle System
Polar entry only works correctly once you know how AutoCAD measures angles by default:
| Angle | Direction |
|---|---|
| 0° | East (positive X) |
| 90° | North (positive Y) |
| 180° | West (negative X) |
| 270° (or -90°) | South (negative Y) |
Angles increase counterclockwise from 0° at the positive X-axis, which is the opposite rotation direction from how a clock face moves. AutoCAD also accepts negative angle values as shorthand for the counterclockwise equivalent: typing -90 is treated identically to 270, since both describe a direction straight down. A relative polar entry of @4<-90 and @4<270 move the same 4 units straight down and land on the exact same point. This default rotation direction can technically be changed through the ANGDIR and ANGBASE system variables, but the exam treats the standard counterclockwise-from-east system as the baseline unless a question explicitly states otherwise.
Dropping the @ Symbol: Absolute Polar Coordinates
Typing a distance-and-angle pair without the @ symbol, such as 5<45, does not produce an error — but it does produce a different result than most drafters expect. Without the @, AutoCAD treats the entry as an absolute polar coordinate, measured from the origin rather than from the last point. Typing 5<45 places a point 5 units from (0,0) at a 45° angle, which works out to roughly (3.54, 3.54). This distinction — that omitting @ shifts the reference point from "last point" all the way back to "origin" — is a frequently tested nuance, because it's easy to assume distance<angle behaves like a self-contained instruction regardless of the @ symbol.
Worked Example: One Line, All Three Entry Modes
Consider drawing a rectangle with the LINE command using all three coordinate types in sequence:
- Specify first point: type 2,2 (absolute) → point lands at (2, 2)
- Specify next point: type @4,0 (relative) → 4 added to X, 0 added to Y → (6, 2)
- Specify next point: type @3<90 (relative polar) → 3 units at 90° (straight up) from (6,2) → (6, 5)
- Specify next point: type @4<180 (relative polar) → 4 units at 180° (straight left, i.e., -4 in X) from (6,5) → (2, 5)
- Specify next point: type C to Close → draws back to the original (2, 2)
The result is a clean 4-unit-wide, 3-unit-tall rectangle, built entirely from typed coordinates with no mouse clicks required — the same precision the ACU objectives expect you to demonstrate on the exam's live-in-the-application items.
On the Exam
Expect the exam to give you a starting coordinate and a typed entry, then ask you to compute the resulting point — exactly like the worked example above. Watch specifically for the presence or absence of the @ symbol, since it changes the reference point from last-point to origin, and for angle values beyond the four cardinal directions, such as 45°, 135°, 225°, or 315°, which require you to recognize which quadrant they fall in before estimating the resulting X,Y offset.
The last point entered in a command is (4,3). You then type @2,-5 at the next point prompt. What are the coordinates of the resulting point?
The last point entered is (5,5). You type @6<180 at the next prompt. Where does the new point land?
Which of the following coordinate entry styles always measures a point from the drawing's origin (0,0), regardless of where the last point was placed?
Under AutoCAD's default angle system, which direction does an angle of 270° (or -90°) point?