0
0
SolidworksHow-ToBeginner · 3 min read

How to Mirror Object in AutoCAD: Step-by-Step Guide

To mirror an object in AutoCAD, use the MIRROR command, select the object, then specify the mirror line by picking two points. The command creates a flipped copy of the object across the mirror line, and you can choose to keep or erase the original.
📐

Syntax

The basic syntax for the mirror command in AutoCAD is:

  • MIRROR: Starts the mirror command.
  • Select objects: Choose the objects you want to mirror.
  • Specify first point of mirror line: Pick the first point to define the mirror axis.
  • Specify second point of mirror line: Pick the second point to complete the mirror axis.
  • Delete source objects? [Yes/No]: Choose whether to erase the original objects or keep them.
autocad
Command: MIRROR
Select objects: (select object)
Specify first point of mirror line: (pick point)
Specify second point of mirror line: (pick point)
Delete source objects? [Yes/No] <N>:
Output
Creates a mirrored copy of the selected object across the defined mirror line.
💻

Example

This example shows how to mirror a rectangle across a vertical line:

autocad
Command: RECTANGLE
Specify first corner point: 0,0
Specify other corner point: 4,2
Command: MIRROR
Select objects: (select rectangle)
Specify first point of mirror line: 2,0
Specify second point of mirror line: 2,3
Delete source objects? [Yes/No] <N>: N
Output
A mirrored rectangle appears on the opposite side of the vertical line x=2, original rectangle remains.
⚠️

Common Pitfalls

Common mistakes when using the mirror command include:

  • Not selecting the correct mirror line points, which results in unexpected mirror direction.
  • Accidentally deleting the original object by choosing Yes at the delete prompt.
  • Trying to mirror objects on locked layers, which prevents changes.
  • Forgetting to select all objects intended for mirroring.

Always double-check the mirror line and the delete option before confirming.

autocad
Wrong way:
Command: MIRROR
Select objects: (select object)
Specify first point of mirror line: 0,0
Specify second point of mirror line: 0,0  ; (same point, invalid mirror line)

Right way:
Command: MIRROR
Select objects: (select object)
Specify first point of mirror line: 0,0
Specify second point of mirror line: 0,5
Output
Wrong way: Error or no mirror effect. Right way: Object mirrored vertically.
📊

Quick Reference

StepActionNotes
1Type MIRRORStarts the mirror command
2Select objectsChoose what to mirror
3Pick first mirror line pointDefines start of mirror axis
4Pick second mirror line pointDefines end of mirror axis
5Choose to delete originalType Yes to erase, No to keep

Key Takeaways

Use the MIRROR command and define a mirror line with two points.
Choose whether to keep or delete the original object after mirroring.
Ensure the mirror line points are different to avoid errors.
Select all objects you want to mirror before starting the command.
Avoid mirroring objects on locked layers to prevent issues.