How to use Region command in AutoCAD 2023?

The topic today: How to use the Region command in AutoCAD 2023? In AutoCAD 2023 and the same previous version, to use the “Region” command to create a 2D region object from a closed area or loop of 2D objects such as lines, polylines, circles, or curves, follow these steps: 1. Start AutoCAD 2023 and open your drawing… Read More »

Lisp AutoCAD – Separate Hatch

The topic today: Lisp AutoCAD – Separate Hatch Shortcut command: BRH Step to step as follow: Load Lisp Type BRH and Enter Pick Pline Pick Separative Hatch region Code Lisp: (defun c:BRH () (grtext -1 “”) (setq Pline (car (entsel “\n Pick Pline”)) e (entsel “\nPick Area Hatch “) hObj (car e) pt (cadr e) ) (command “.trim”… Read More »

Lisp AutoCAD – Align Dimension

The topic today: Share Lisp AutoCAD – Align Dimension The shortcut command is BD Step to step use the following: Load Lisp Type BD and press Enter Select Dimensions and Enter Select Point to extend Code Lisp: (defun myerror (s) ; If an error (such as CTRL-C) occurs ; while this command is active… (cond ((= s “quit… Read More »

How to use Rotate command in AutoCAD 2023?

The topic today: How to use Rotate command in AutoCAD 2023. AutoCAD 2023 offers an array of features and commands to make designing, drafting, and modeling easier for its users. One such essential tool is the Rotate command, which allows you to effortlessly rotate objects in your drawing to the desired angle. In this comprehensive guide, we will… Read More »