0
0
SolidworksHow-ToBeginner · 3 min read

How to Draw Rectangle in AutoCAD: Simple Steps

To draw a rectangle in AutoCAD, use the RECTANGLE command by typing it in the command line, then specify the first corner point and the opposite corner point. This creates a rectangular shape easily by defining two diagonal corners.
📐

Syntax

The basic syntax to draw a rectangle in AutoCAD is:

  • RECTANGLE - Starts the rectangle drawing command.
  • Specify first corner point - Click or enter coordinates for the first corner.
  • Specify opposite corner point - Click or enter coordinates for the opposite corner to define the rectangle size.

You can also use options like Dimensions to enter width and height directly.

autocad command line
RECTANGLE
Specify first corner point or [Chamfer/Elevation/Fillet/Thickness/Width]: 0,0
Specify other corner point or [Area/Dimensions]: 5,3
Output
A rectangle with corners at (0,0) and (5,3) is drawn on the drawing area.
💻

Example

This example shows how to draw a rectangle with width 5 units and height 3 units starting at the origin point (0,0).

autocad command line
RECTANGLE
Specify first corner point or [Chamfer/Elevation/Fillet/Thickness/Width]: 0,0
Specify other corner point or [Area/Dimensions]: D
Specify rectangle width: 5
Specify rectangle height: 3
Output
A rectangle is drawn starting at (0,0) with width 5 units and height 3 units.
⚠️

Common Pitfalls

Common mistakes when drawing rectangles in AutoCAD include:

  • Not specifying points correctly, causing unexpected rectangle size or location.
  • Confusing the command options like Dimensions and Area.
  • Forgetting to press Enter after typing commands or coordinates.

Always double-check coordinate inputs and use the D option to enter exact dimensions if needed.

autocad command line
RECTANGLE
Specify first corner point or [Chamfer/Elevation/Fillet/Thickness/Width]: 0,0
Specify other corner point or [Area/Dimensions]: 5,3

// Wrong: Typing coordinates directly without commas or spaces can cause errors.

RECTANGLE
Specify first corner point or [Chamfer/Elevation/Fillet/Thickness/Width]: 0 0
Specify other corner point or [Area/Dimensions]: 5 3

// Right: Use commas to separate coordinates.
📊

Quick Reference

CommandDescription
RECTANGLEStarts rectangle drawing command
Specify first corner pointSet the first corner of the rectangle
Specify opposite corner pointSet the opposite corner to define size
D (Dimensions)Enter width and height manually
AreaSpecify area instead of corners

Key Takeaways

Use the RECTANGLE command and specify two opposite corners to draw a rectangle.
You can enter exact width and height using the Dimensions option (D).
Always separate coordinate values with commas for accuracy.
Double-check inputs to avoid unexpected rectangle size or placement.
Press Enter after each input to confirm commands.