Angelo2449
Guest
Hello everyone,
I'm going crazy about this little routine that doesn't work.
Thank you.
I'm going crazy about this little routine that doesn't work.
Code:
(defun c:prova (/ cx cy cx cyx cyyy xyz)
(setq spotted (getpoint "\nclick point"))
(command "_circle" point 0.15)
(setq cx (car point))
(setq cy)
(setq cxx (+ cx 0.20))
(setq cyyy (+ cy 0.25))
(setq xyz (list cxx cyyy 0.00)
(command "_circle" xyz 0.40)
(command "_change" "_last" "_p" "_c" "_red"")
)