AutoLISP is a programming language created in 1986 by David Betz.
#288on PLDB | 37Years Old | 430Users |
20Books | 1Papers |
AutoLISP is a dialect of the LISP programming language built specifically for use with the full version of AutoCAD and its derivatives, which include AutoCAD Map 3D, AutoCAD Architecture and AutoCAD Mechanical. Neither the application programming interface nor the interpreter to execute AutoLISP code are included in the AutoCAD LT product line.. Read more on Wikipedia...
(alert "Hello World")
1 (defun c:pointlabel ( / pnt )
2 (if (setq pnt (getpoint "\nSpecify point: "))
3 (progn
4 (entmake
5 (list
6 '(0 . "POINT")
7 (cons 10 (trans pnt 1 0))
8 )
9 )
10 (entmake
11 (list
12 '(0 . "TEXT")
13 (cons 10 (trans (cons (+ (car pnt) 0.6) (cdr pnt)) 1 0))
14 (cons 40 (getvar 'textsize))
15 (cons 1 (strcat "X:" (rtos (car pnt)) " Y:" (rtos (cadr pnt))))
16 )
17 )
18 )
19 )
20 (princ)
21 )
Feature | Supported | Token | Example |
---|---|---|---|
Strings | ✓ | " | "Hello world" |
Lispy | ✓ |
title | author | year | reviews | ratings | rating |
---|---|---|---|---|---|
AutoLISP Programming | Rod R. Rawls | 1993 | 0 | 2 | 2.50 |
AutoLISP Programming: Principles and Techniques | Rod R. Rawls | 1997 | 0 | 0 | 0.0 |
AutoLISP: Programming by Example | Gene Straka | 1992 | 0 | 0 | 0.0 |
AutoLISP: Programming by Example | Gene Straka | 1992 | 0 | 0 | 0.0 |
AutoLISP Concepts: Programming for Productivity | William Kramer | 1989 | 0 | 0 | 0.0 |
AutoLISP in Plain English: A Practical Guide for Non-Programmers | George O. Head | 1987 | 0 | 3 | 4.33 |
title | authors | year | publisher |
---|---|---|---|
Autolisp Programming: Principles and Techniques | Rawls, Rod R. and Hagen, Mark A. | 1996 | Goodheart-Willcox Pub |
The Codewriting Workbook: Creating Computational Architecture in AutoLISP | Krawczyk, Robert J. | 2008 | Princeton Architectural Press |
AutoLISP to Visual LISP: Design Solutions: Design Solutions for AutoCAD 2000 (Autodesk's Programmer Series) | Standiford, Kevin | 2000 | Thomson Delmar Learning |
A Practical Guide to AutoCAD AutoLISP | Bousfield, Trevor | 1998 | Longman Pub Group |
AutoLISP Programming | Rod Rawls | Goodheart-Willcox Pub | |
Autolisp Programming/solution Manual | Rod Rawls and Mark Hagen | 1994 | Goodheart-willcox Pub |
Using Autolisp With Autocad | Robert Mcfarlane and Camillus P. Mcelhinney | 1999 | Wiley |
Introduction To Autolisp | Peter M. Moanfeldt | 1996 | Pearson |
Autolisp Programming: Principles & Techniques | Rod R. Rawls and Mark A. Hagen | 1998 | Goodheart-willcox Pub |
AutoCAD Platform Customization: AutoLISP | Lee Ambrosius | 2014-08-11 | Wiley Professional Development (P&T) |
Autolisp Programming: Principles And Techniques | Rod R. Rawls and Mark A. Hagen | 1995 | Goodheart-willcox Pub |
Autolisp Concepts: Programming For Productivity | William Kramer | 1989 | Ariel Communications |
Autolisp R15 In Depth: Expand Your Programming Possibilities | 1999 | Coriolis Group | |
Autolisp Programming: A Coursework Book For The City & Guilds 4351-05 Scheme | Browning Computer Documentation |
title | authors | year | citations | influentialCitations |
---|---|---|---|---|
Methodical complex of training in programming on AutoLISP language | E. Alshakova | 2013 | 2 | 0 |