Jump to content

Recommended Posts

Posted

I would like to learn to make lisp programs. Is there any way to get learning briefly. I am a new one to Auto lisp.

Posted (edited)
Plenty of books available also.

 

My favorite book at the moment is David M. Stein's Visual LISP Developer's Bible, 2011 Edition... still only $6.99 from Amazon ;)

 

Also, don't forget about the LISP Developer Documentation, either F1 from VLIDE, or:

 

(defun c:LISPDD () (c:LISPDeveloperDocumentation))
(defun c:LISPDeveloperDocumentation  ()
 (princ "\rLISP DEVELOPER DOCUMENTATION ")
 (vl-load-com)
 ((lambda (vrsn)
    (help
      (strcat
        "acad_dev"
        (cond
          ((vl-string-search "16.2" vrsn) "162")                       ; 2006
          ((vl-string-search "17.0" vrsn) "170")                       ; 2007
          ((vl-string-search "17.1" vrsn) "171")                       ; 2008
          ((vl-string-search "17.2" vrsn) "172")                       ; 2009
          ((vl-string-search "18.0" vrsn) "180")                       ; 2010
          ((vl-string-search "18.1" vrsn) "181")                       ; 2011
          ((vl-string-search "18.2" vrsn) "182")))))                   ; 2012
   (vlax-product-key))
 (princ))

Edited by BlackBox
Code simplified
Posted

After reading the books and help etc as a start set yourself a goal for a program in lisp best way to learn !

 

Start simple think about how you would do it manually and write down the steps, if it involves a lot of pt calculations draw a diagram so you know what variables you have used and where they are.

 

If you have an idea of something you want post it here and at least you should get advice about how to approach the problem write some code then and help will follow.

  • 2 weeks later...
Posted

Thank you friend...I will follow the same

Posted

More AutoLISP tutorials can be found here....http://www.jefferypsanders.com/autolisp.html

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...