+ 1
Want to create lisp on autocad program by C++ is it possible ???
4 odpowiedzi
+ 1
Thank u so much , i will try this way ...
0
Adnan
I don't understand your question.
(Auto-)LISP already is a "programming" language which can build powerful add-ons for AutoCAD without the need of another programming language.
You can learn the basics on:
https://www.afralisp.net
0
I tried this before but couldnt understand either , i want lisp doing special orders for me, and still cant create one its too hard to learn this and start on my own
0
Adnan what kind of orders are you thinking of?
Do you know that most AutoCAD commands can be used for scripting in a very convenient way?
For example the LINE command:
_.line #0,0,0 #1,1,0 will draw a line starting at World UCS (that's because of the #) 0,0,0 to 1,1,0
I don't know LISP either, that's why I use AutoCAD Scripting for batch processing and automation.
First I use MS Excel to generate my commands via String Concatenation and then I take the column containing the final command, put it in Notepad++ and save it as *.scr file.
Then I start the script with the SCRIPT command.
Take a look at Lee Mac's site (that's where I learned it):
http://www.lee-mac.com/scriptwriting.html
If you don't have anything that's very complex I'm pretty sure it can be solved using my method (Excel & AutoCAD).
Please let me know if I can guide you through this process.
Anyway, you can post what you plan to do with AutoCAD here in a form of a short description or a link to your final *.dwg file.