Jump to content

Why can not I pick the cirrcle


Recommended Posts

Try to draw a line from quadrant the snap goes to center only, even Nearest snap not selected. 

image.png.3c829376ec0acc2cc923e775ee320f4d.png

Link to comment
Share on other sites

Your circle is not in the world UCS.

 

If you set a UCS using the circle as the base, then all the snaps work perfectly.

  • Like 1
Link to comment
Share on other sites

17 hours ago, eldon said:

Your circle is not in the world UCS.

 

If you set a UCS using the circle as the base, then all the snaps work perfectly.

Thanks

But not working.

Link to comment
Share on other sites

That is curious, because it works for me, even with my old version of AutoCAD.

 

How are you setting up the UCS? Are you taking the Object option and then clicking on the circle?

 

However, if you do not want your circles giving you problems, you will have to redraw them flat.

Link to comment
Share on other sites

;;; Changes "Z" value of center points of all selected circles to 0.0
;;; Changes group code 210 to default: (210 0.0 0.0 1.0)

(defun c:dcc (/ a d d1 d2 e1 n)

  (princ "\n Select circles to fix: ")
  (setq	a  (ssget '((0 . "circle")))
	d  (sslength a)
	d1 d)
  (repeat d
    (setq d2 (1- d1)
	  n  (ssname a d2)
	  e1 (entget n)
	  e1 (subst (cons 210 '(0.0 0.0 1.0))(assoc 210 e1) e1)
	  e1 (subst (cons 10 (list (cadr (assoc 10 e1)) (caddr (assoc 10 e1)) 0.0))(assoc 10 e1) e1)
	  )
    (entmod e1)
    (setq d1 d2)
  )
  (princ)
)

Try to run this code on the circles

Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...