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 »

How to use Polyline command in AutoCAD 2023?

The topic today: How to use the Polyline command in AutoCAD 2023? The Polyline command in AutoCAD 2023 and the same as the previous version is used to draw connected lines, arcs, or a combination of both. Here’s a step-by-step guide on how to use the Polyline command: 1. Open your drawing or begin a new one in… Read More »

How to use Move command in AutoCAD 2023?

The topic today: How to use the Move command in AutoCAD 2023. In AutoCAD 2023 and the same as the previous version, the Move command allows you to move objects or a selected group of objects from one location to another in your drawing. Here’s how to use the Move command: 1. Launch AutoCAD 2023 and open your… Read More »