0
0
SolidworksHow-ToBeginner · 4 min read

How to Draw Floor Plan in AutoCAD: Step-by-Step Guide

To draw a floor plan in AutoCAD, start by setting up your drawing units and layers. Use the Line and Rectangle tools to create walls, then add doors and windows with the Polyline or Block commands. Finally, annotate your plan with dimensions and labels using the Dimension tool.
📐

Syntax

Here are the main commands to draw a floor plan in AutoCAD:

  • LINE: Draw straight lines for walls.
  • RECTANGLE: Quickly draw rectangular rooms.
  • POLYLINE: Create connected lines for complex shapes.
  • OFFSET: Create parallel lines for wall thickness.
  • BLOCK: Insert reusable objects like doors and windows.
  • DIMENSION: Add measurements to your drawing.
plaintext
LINE
RECTANGLE
POLYLINE
OFFSET
BLOCK
DIMENSION
💻

Example

This example shows how to draw a simple rectangular room with walls, a door, and a window.

plaintext
1. Set units: Type <code>UNITS</code> and choose architectural units.
2. Draw outer walls: Use <code>RECTANGLE</code> command, specify first corner (0,0), then opposite corner (20,15) feet.
3. Offset walls: Use <code>OFFSET</code> 0.5 feet to create inner wall lines.
4. Draw door: Use <code>LINE</code> to draw door opening on one wall.
5. Insert window block: Use <code>INSERT</code> command to place a window block on another wall.
6. Add dimensions: Use <code>DIMLINEAR</code> to measure room sides.
Output
A rectangular floor plan 20x15 feet with 0.5 feet thick walls, a door opening on one side, and a window on another side, all dimensioned.
⚠️

Common Pitfalls

Common mistakes when drawing floor plans in AutoCAD include:

  • Not setting correct units before drawing, causing scale issues.
  • Drawing walls as single lines instead of using OFFSET for thickness.
  • Forgetting to use layers to organize walls, doors, and windows separately.
  • Not using blocks for doors and windows, which makes editing harder.
  • Skipping dimensions, which makes the plan unclear.
plaintext
Wrong way:
LINE from (0,0) to (20,0) for wall without thickness.

Right way:
RECTANGLE from (0,0) to (20,15)
OFFSET 0.5 to create wall thickness.
📊

Quick Reference

CommandPurpose
LINEDraw straight lines for walls and openings
RECTANGLECreate rectangular rooms quickly
OFFSETCreate wall thickness by offsetting lines
POLYLINEDraw connected lines for complex shapes
BLOCKInsert reusable objects like doors/windows
DIMENSIONAdd measurements to the floor plan
UNITSSet drawing measurement units

Key Takeaways

Always set the correct units before starting your floor plan.
Use OFFSET to create accurate wall thickness instead of single lines.
Organize elements on layers for easier editing and clarity.
Use BLOCKS for doors and windows to simplify modifications.
Add dimensions to communicate exact measurements clearly.