TunzaGibbo Posted June 10, 2018 Posted June 10, 2018 Would anyone know why this line won't work? Pt1 ang1 & dist1 are established command line error is looking for the first point Thank you (command "_.line" (polar Pt1 (+ ang1 (dtr 9o)) 13) (polar ang1 dist1) "") Quote
marko_ribar Posted June 10, 2018 Posted June 10, 2018 Where is reference point here : (polar ??? ang1 dist1) (dtr) sub function must be loaded, I suggest : (dtr 90) = (cvunit 90 "degree" "radian") BTW. Whenever you have command call that involves points input, preferable is that you specify "_non" or "_none" osnap before point spesifications... Quote
Lee Mac Posted June 10, 2018 Posted June 10, 2018 You also have "9o" instead of "90": (dtr 9o) I would suggest writing your code using a font which demarcates zeroes using lines through the "0" (such as Consolas) to avoid recurrence of this mistake. Please use a more descriptive thread title in future. Quote
TunzaGibbo Posted June 11, 2018 Author Posted June 11, 2018 Thank you all very much for the feedback. I must have looked at that line of code 100 times and never spotted the problem with "9o" Quote
BIGAL Posted June 11, 2018 Posted June 11, 2018 Yeah like the others instant 9o (/ pi 2.0) or (dtr 90) or (setq a90 (/ pi 2.0)) if you need to use angle 90 a lot. (polar pt1 a90 dist) Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.