- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello!
I quite recently began experimenting with AutoLISP, and was trying to write my own routine where I could add text along a chosen line with the z-coordinates to a chosen point along the line.
So far I've got like this:
(Defun c:hll()
(setq
pointa (getpoint "")
zvalue (caddr pointa)
); setq
Further on I thought of something like this (ofc not correctly written):
(command "text" *startingpoint = pointa* *height value* *rotation value* *text to be written = zvalue* "")
AND I would like this to go on/be repeated for every point the user wants to add, making it a loop. So that say if I got a 3D line and wants to create a small drawing which shows a chosen selection of heights, I can simply run my LISP and it will draw the text along the way as I just "click".
Any tips for how I can proceed?
Regards, Thomas
Solved! Go to Solution.