Plate and sheet development



Hi Friends.....

In here you can generate AutoLISP(.lsp) program to draw the development of geometric shapes in AutoCAD. This drawing you can directly transfer to your cnc plate cutting machines to cut the plate. Just select shape which you want to draw and fill the form, You can generate your AutoLISP(.lsp) program.


How to use AoutoLISP (.lsp) Application ?.


Select your required shape


Cylinder developments

Cone development

Transitions development

Segmented Bend development

Rectangular Bend development

Inclined pipe sleeve development

Insert multiple drawing files ( .dwg or .dxf ) to an AutoCAD sheet



Dear Friends,

In case of you want to insert more .dwg or .dxf files in to an AutoCAD sheet, normally it will take more times. When we are using CNC machines mainly we are facing these cases.

I have a solution to solve this…

In here you can generate AutoLISP(.lsp) program to insert multiple drawing files ( .dwg or .dxf ) to an AutoCAD sheet.

Just fill below form and generate your AutoLISP(.lsp) program to insert multiple drawing files.



How to do?.

Distance required between each drawings

Set the drawing base point
For properly work the distance between each drawings, you should follow below..

After you have completed your drawing preparation, you should set left bottom corner of the drawing as the base point of your drawing.

How to do...?
1) Give comment "BASE"
2) Click left bottom corner of your drawing.
3) Save your drawing file


File format

Insert drawing file in axis

Short key comment for run the program in AutoCAD

File name separated by Don't provide unnecessary enter/spaces/comma in the file name







File name: How to copy file name from specific folder?




AutoLISP(.lsp) program for insert files
How to use AoutoLISP (.lsp) Application


Note: All .dwg/.dxf files and your AutoCAD sheet should be in same folder.




 How to do?.



😊Enjoy the solution of "How to add multiple DWG files in same workspace in Autocad?"😊

How to use AoutoLISP (.lsp) Application



The instructions are available for how to use AoutoLISP (.lsp) Application in Autodesk official website

In here I will explain to you, Simply how to use AoutoLISP (.lsp) Application for Windows operating system.
  1. Open a Notepad     and type the lisp program or copy paste the AutoLISP program, if you already generated 
  2. Save the Notepad as file extension “.lsp” (Example “xxxx.lsp”) 

  3. Open AutoCAD and give comment “APPLOAD” or “AP”
  4. Load AutoLISP (.lsp) Application.
  5. To run the program give comment which you written in your program (it's shown in your program after written as "defun c:" (Example :  "hello" is the AutoCAD comment for below shown program
    (defun c:hello ( / msg)
      (setq msg (getstring T "\nEnter a message: "))
      (alert msg)
    )
    
    (prompt "\nAutoLISP Tutorial file loaded.")
    (princ) ; Suppress the return value of the prompt function