Coordinate Entry in AutoCAD: Absolute, Relative, and Polar Relative
Overview of AutoCAD’s Coordinate System
- AutoCAD is built on a Cartesian coordinate system whose origin is (0,0).
- Directional conventions:
- Positive X → rightward along the screen.
- Positive Y → upward along the screen.
- Negative X → leftward.
- Negative Y → downward.
- The quadrant containing +X and +Y values is referred to as the positive–positive quadrant.
Three Methods of Coordinate Entry
1. Absolute Coordinates
- Definition: Entering the exact X and Y values relative to the origin.
- Syntax: simply type the desired point as X,Y.
- Example walk-through (performed with the Line tool):
- Start point: type 0,0 → hit Enter.
- Next point: type 1,0 → draws a horizontal line one unit to the right.
- Next: 1,1 → moves upward one unit (diagonal).
- Next: 0,1 → returns left to align vertically above the origin.
- Finish: 0,0 → closes the shape, hit Enter again to end the command.
- Result: a precise square whose vertices are known in absolute terms.
2. Relative (Cartesian) Coordinates
- Definition: Input changes (ΔX, ΔY) from the last picked point.
- Requires the at symbol ( @ ) to indicate “from the previous point.”
- Syntax: @ΔX,ΔY. Positive/negative signs denote direction.
- Demonstration sequence (square of side 1, unknown absolute placement):
- Pick any start point (mouse-click).
- Type @1,0 → draws one unit right.
- @0,1 → draws one unit up.
- @-1,0 → draws one unit left.
- @0,-1 → draws one unit down to close.
- Observations:
- Shape accuracy (perfect square) is guaranteed, even though its absolute location is unknown.
- Negative signs are critical for left/down movements: e.g., −1 in X or Y.
3. Polar Relative Coordinates
- Also a relative method (starts with @), but uses distance & angle instead of ΔX, ΔY.
- Syntax: @Distance
- Key points about angles:
- 0∘ → rightward (positive X).
- 90∘ → upward (positive Y).
- 180∘ → leftward (negative X).
- 270∘ → downward (negative Y).
- 360∘ ≡ 0∘ (full circle).
- Rotation is counter-clockwise by convention.
- Why use polar?
- Useful for arbitrary angles (e.g.
33∘ or 22.5∘) that may not appear in default Polar Snap. - Avoids cumbersome snap-angle configuration.
- Example (same unit-length square):
- Pick start point.
- @1
- @1
- @1
- @1
- All three entry styles will be used in later lessons (especially for drawing electrical symbols).
- Skillful switching between methods increases drafting speed and accuracy.
- Remember:
- Absolute = “Where on the global map?”
- Relative = “How far right/left & up/down from here?”
- Polar Relative = “How far, and in what angle, from here?”
- Efficient angle specification in Polar Relative prevents over-configuring Polar Snap and keeps the drafting environment uncluttered.
Quick Reference Cheat-Sheet
- Absolute: X,Y
- Relative: @@ΔX,ΔY
- Polar Relative: @@Distance<Angle
- Standard angles: 0∘,90∘,180∘,270∘,360∘.