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.
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.
Open a Notepad
and type the lisp program or copy paste the AutoLISP program, if you already generated
Save the Notepad as file extension “.lsp” (Example
“xxxx.lsp”)
Open
AutoCAD and give comment “APPLOAD” or “AP”
Load AutoLISP (.lsp) Application.
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 returnvalue of the prompt function