Hi everyone,
Just trying to pass a list of points to a "pline" command.
The problem is num of points is initially unknown, though being calculated within a routine.
The following code (as smth to start with) evolves known num of points.
(defun c:pltest6 ()
(setq pts (list '(0 0) '(0 10) '(10 10) '(10 20) '(20 20) '(20 30) '(30 30)))
(setq ptqty 7)
(setq ptnum 0)
(command "pline"
(car pts)
(pt_retr pts)
(pt_retr pts)
(pt_retr pts)
(pt_retr pts)
(pt_retr pts)
(pt_retr pts)
""
)
)
(defun pt_retr (lst)
(setq ptnum (1+ ptnum))
(repeat ptnum
(setq lst (cdr lst))
)
(setq pt (car lst))
)
Repeat/foreach don't do, 'cause they return the value of the last iteration..
Now my Q is,
is it possible to modify the code above to use loop instead of repeat one and the same line (moreover, unknown number of times ),
OR some other approach would rather fix the task?
Thank you in advance,
Dmitro