Posts

Showing posts with the label autolisp

What AutoLISP Reveals

Image
What AutoLISP Reveals You are working with AutoCAD. Or maybe you are working with an alternative of AutoCAD such as IntelliCAD. In the program you are creating technical drawings. The guess is that you are creating a lot of technical drawings with the program. That Is How It Is It takes a lot of time before your technical drawing is is created. And once it is created, you cannot use it right away. The technical drawing needs to be checked first. And checking the technical drawing. That takes a lot of time too. Wasting Time And Money That is what AutoLISP reveals. You are wasting a lot of time and money. You could work with an AutoLISP program. The AutoLISP program could be used to create parts of your technical drawing. It could even be used to create a complete drawing. And that is how it is. Creating a complete technical drawing with an AutoLISP program is very fast. It is done in seconds. If a complete technical drawing is created with an AutoLISP program. You dont have to wait for ...

What Everybody Ought To Know About Arrays And AutoLISP

What Everybody Ought To Know About Arrays And AutoLISP You know about arrays. You have arrays in Visual Basic, in C++, and many other programming languages. But AutoLISP? OK. Let me be very clear. There are no arrays in AutoLISP. But. In AutoLISP. Can you store values that are related? Oh yes. You can. But is is done in a different way. It is not done in an array. It is done in a list. AutoLISP works with lists. Arrays Let me be very clear. Lets start with an array. I start with a one dimensional array. Here is the array: 1 2 3 4 10 20 30 40 You find the following values in the array. 10, 20, 30, 40 So in this one dimensional array you find four values. 1 2 3 1 10 11 12 2 20 21 22 3 30 31 32 Above you see a two dimensional array. It consists of three rows and three columns. The rows and the columns have been numbered. You find the following values in the array. 10, 11, 12, 20, 21, 22, 30, 31, 32 So in this array you fi...