Tagged Questions

AutoLISP is the flavor of LISP implemented by Autodesk for AutoCAD.

learn more… | top users | synonyms

4
votes
2answers
111 views

Visual Lisp: how to call functions in external C++ DLL

I have a C++ dll I have written (native, not .net), and I would like to use its functionality from Visual Lisp. Can anyone point me to an example of how to do this, or at least which bit of ...
4
votes
4answers
138 views

Circumflex accent before c IN LISP

I'm studing lisp and I found this: (zoom in)^C ^C , but the text don't explain it, and I searched "^C ^C" in other places but didn't found anything. Can someone here help-me? (I'm studying english ...
4
votes
4answers
232 views

Looking for a recommendation for an AutoLisp / VisualLisp book

Can anyone recommend a good introductionary book dealing with AutoLisp and VisualLisp? I found some general Lisp books out there, but I'm uncertain how much Lisp variants differ. I haven't found any ...
3
votes
1answer
187 views

SOAP request from within an AutoLISP/AutoCAD macro

We have built a webservice for a client that uses AutoCAD. They have a macro that runs in AutoCAD that builds a SOAP request. But they have not figured out how to actually send() the soap request to ...
3
votes
5answers
666 views

Using Lisp (or AutoLisp) how good is the associative lists performance?

I'm doing an AutoLisp project which uses long associative structures to do heavy geometrical processing - so I'm curious about the associative list intense use timing results. How simple/complex is ...
1
vote
3answers
49 views

Which autolisp / autocad version to use for maximum compatibility with existing deployments?

I'm about to dive into autolisp and am wondering how to write code that is compatible with as many different versions of autocad as possible, obviously including the current one but also stretching ...
1
vote
1answer
97 views

draw a polygon over closed polylines

i try to describe this problem well with my humble English skills : i have closed blocks on my dwg file, these blocks are consist of many Polylines which are joined together but they are not uni-body ...
0
votes
1answer
52 views

A problem of volume calculation with AutoLisp

Hello to all and here's the problem. I am thinking about creating the following program in AutoCAD's AutoLisp language: say we need to calculate the volume of a surface of rectangular basis, enclosed ...
0
votes
2answers
113 views

Search for a line of text (as search criteria) and replace a certain string of digits in that line?

I have a rather extensive autolisp file (roughly 4000 lines) that writes a big comma-delimited list of item numbers and their descriptions to a file. here's an example (they all look the same as this, ...
0
votes
1answer
118 views

Index thru a list of lists in lisp (autolisp actually)

Say I have a list of lists of integers: setq a '(21 14 35 29 16 28) setq b '(15 36 21 17 45 41) setq c '(24 21 35 28 17 21) There could be 50 +/- lists total. I have another list say ...