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 »

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 »