Lisp AutoCAD – Associative Hatch

The topic today: Lisp AutoCAD – Associative Hatch or Merge Hatch Shortcut command: MH Step to step as follow: Load Lisp into AutoCAD Type MH and press Enter Select Hatch Press Enter Code Lisp: (defun c:mh (/ ss entht sl i dt dtht) (princ “\nMerge Hatch”) (setq ss (ssget ‘((0 . “HATCH”))) sl (if ss (sslength ss) 0… Read More »

How to use the Circle Command in AutoCAD 2023?

The topic today: How to use the Circle Command in AutoCAD 2023 Do you want to make the most of the Circle command in AutoCAD 2023? This step-by-step guide will help you navigate the process with ease and optimize your design experience in the popular drafting software. The Circle command is a crucial tool for creating precise circular… Read More »

Lisp AutoCAD – Total length Line, Polyline, Circle, Arc, Ellipse, Spline

The topic today: Lisp AutoCAD – Total length Line, Polyline, Circle, Arc, Ellipse, Spline To use this Lisp, step to step as following: Load Lisp to AutoCAD Type “TL” and press Enter Select objects need to calculate length Press Enter and Look result Code Lisp: (defun Length1(e) (vlax-curve-getDistAtParam e (vlax-curve-getEndParam e))) ;;;——————————————————————– (defun C:TL( / ss L e)… Read More »

How to use Block command in AutoCAD 2023?

The topic today: How to use the Block command in AutoCAD 2023? In AutoCAD 2023 and the same as the previous version, the Block command is used to create a block definition from selected objects, which can then be inserted as an instance in other locations or drawings. Here’s a step-by-step guide on how to use the Block… Read More »

How to use Rectangle command in AutoCAD 2023?

The topic today: How to use the Rectangle command in AutoCAD 2023 To use the Rectangle command in AutoCAD 2023 and the same as the previous version, follow these steps: 1. Launch AutoCAD 2023 and open a new or existing drawing. 2. Activate the Rectangle command by doing one of the following: – Type “RECTANGLE” or “REC” in… Read More »