Jump to content

Multiple circle array


AnotherSteve

Recommended Posts

Hi,

 

I have a drawing with lots of circles (all different sizes). I need to shrink all the circles by .1mm.

 

I need an 'ugway' to help my autocad kung fu.

 

:)

Link to comment
Share on other sites

Here is a method

 

(defun c:test ( / ss x)
(setq ss (ssget  (list (cons 0 "Circle")) ))
(setq len (sslength ss))
(setq x -1)
(Repeat len (setq obj (vlax-ename->vla-object (ssname ss (setq x (+ x 1)))))
(setq dia (- (vla-get-diameter obj) 0.1))
(vla-put-diameter obj dia)
)
)

(c:test)

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...