errico
Guest
Hello
I'm trying to create a program so I can design two offset wheels
I managed up to a certain point...I would like to get the process automatically without having to select the object and the direction as I do!!!
(defunc c:circus ()
(setq ra (getdist "\nraggio ")
thk (getdist "\nthk:")
(setq c (getpoint "\insertion point:"))
(command "_circle" c ra)
(command "_offset" thk)
)
I'm trying to create a program so I can design two offset wheels
I managed up to a certain point...I would like to get the process automatically without having to select the object and the direction as I do!!!
(defunc c:circus ()
(setq ra (getdist "\nraggio ")
thk (getdist "\nthk:")
(setq c (getpoint "\insertion point:"))
(command "_circle" c ra)
(command "_offset" thk)
)