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)(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+X and +Y+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,YX,Y.
  • Example walk-through (performed with the Line tool):
    1. Start point: type 0,00,0 → hit Enter.
    2. Next point: type 1,01,0 → draws a horizontal line one unit to the right.
    3. Next: 1,11,1 → moves upward one unit (diagonal).
    4. Next: 0,10,1 → returns left to align vertically above the origin.
    5. Finish: 0,00,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):
    1. Pick any start point (mouse-click).
    2. Type @1,0 → draws one unit right.
    3. @0,1 → draws one unit up.
    4. @-1,0 → draws one unit left.
    5. @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-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:
    • 00^\circ → rightward (positive X).
    • 9090^\circ → upward (positive Y).
    • 180180^\circ → leftward (negative X).
    • 270270^\circ → downward (negative Y).
    • 360360^\circ00^\circ (full circle).
    • Rotation is counter-clockwise by convention.
  • Why use polar?
    • Useful for arbitrary angles (e.g.
      3333^\circ or 22.522.5^\circ) that may not appear in default Polar Snap.
    • Avoids cumbersome snap-angle configuration.
  • Example (same unit-length square):
    1. Pick start point.
    2. @1
    3. @1
    4. @1
    5. @1

Practical & Course-Related Notes

  • 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,YX,Y
  • Relative: @@ΔX,ΔY
  • Polar Relative: @@Distance<Angle
  • Standard angles: 0,90,180,270,3600^\circ, 90^\circ, 180^\circ, 270^\circ, 360^\circ.