danyra Posted January 27, 2020 Posted January 27, 2020 I HAVE THIS... (setq R 0.01) (setq P1a (polar p1ab 0 0.01)) (entmakex (list '(0 . "CIRCLE") (cons 10 P1a) (cons 40 R) '(62 . 171))) HOW CAN I HATCH THIS CIRCLE IN SOLID COLOR 171? OR ON A LAYER WITH THIS COLOR? Quote
danyra Posted January 28, 2020 Author Posted January 28, 2020 8 hours ago, Lee Mac said: You've already asked this question. Most of this answers confusing me Quote
Tharwat Posted January 28, 2020 Posted January 28, 2020 (and (setq cir (entmakex (list '(0 . "CIRCLE") (cons 10 P1a) (cons 40 R) '(62 . 171)))) (setq clr (getvar 'CECOLOR)) (setvar 'CECOLOR "171") (progn (command "_.-hatch" "_S" (ssadd cir) "" "_P" "SOLID" "" "") (setvar 'CECOLOR clr) ) ) 1 Quote
Lee Mac Posted January 28, 2020 Posted January 28, 2020 5 hours ago, danyra said: Most of this answers confusing me Then state that in the original thread, don't create a duplicate thread asking the same question. Quote
ronjonp Posted January 28, 2020 Posted January 28, 2020 (edited) Did you run THIS ? It will allow you to pick your color, set your radius and insert multiple blocks with the picked color and size. Edited January 28, 2020 by ronjonp 1 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.