Learn AutoLISP for AutoCAD productivity
What is AutoLISP?
AutoLISP is a programming language designed specifically for use with the full version of AutoCAD (i.e. it does not work with AutoCAD LT). AutoLISP is one of a number of Application Programming Interfaces (APIs) built into AutoCAD but it is probably the easiest to use and therefore the most productive for the beginner. If you'd like to learn how to use AutoLISP to improve productivity, you're in the right place.
AfraLISP will help you get to grips with AutoLISP as quickly and easily as possible using some great tutorials for beginners. But the site also contains many intermediate and advanced AutoLISP tutorials to take you much further than the basics. In addition, AfraLISP provides DCL Tutorials (Dialog Control Language), Visual LISP tutorials, VBA Tutorials and AutoCAD customization tutorials in case you'd like to take your AutoLISP and AutoCAD programming to the next level.
Beginners Start Here
The Basics in a Nutshell - Part 1
Popularity: 39.7 visits/day | Last visit: 32 mins ago
The Basics in a Nutshell - Part 2
Popularity: 29.1 visits/day | Last visit: 2 hours ago
The Basics in a Nutshell - Part 3
Popularity: 20.7 visits/day | Last visit: 1 hour ago
The Basics in a Nutshell - Part 4
Popularity: 16.8 visits/day | Last visit: 1 hour ago
Popularity: 15.3 visits/day | Last visit: 1 hour ago
Popularity: 41.3 visits/day | Last visit: 1 hour ago
Featured Tutorials
Popularity: 14.7 visits/day | Last visit: 4 hours ago
Popularity: 7.2 visits/day | Last visit: 5 hours ago
Popularity: 7 visits/day | Last visit: 1 hour ago
Loading VBA Files with Visual LISP
Popularity: 10.6 visits/day | Last visit: 1 hour ago
Popularity: 3.2 visits/day | Last visit: 5 hours ago
Beginning Visual LISP - Part 1
Popularity: 8.6 visits/day | Last visit: 3 hours ago
Tip of the Day
Random Number Generator
Random number generation function - based on the linear congruential method as presented in Doug Cooper's book Condensed Pascal, pp. 116-117.
Returns a random number between 0 and 1 :
(defun randnum (/ modulus multiplier increment random)
(if (not seed)
(setq seed (getvar "DATE"))
)
(setq modulus 65536
multiplier 25173
increment 13849
seed (rem (+ (* multiplier seed) increment) modulus)
random (/ seed modulus)
)
)
Missed a Tip?
Did you miss yesterday's tip? Maybe you forgot to drop by or maybe you didn't visit over the weekend. If so, you can now see all the tips published during the past week.
