Jump to content

BLOCK THAT MOVES... HELP


leonucadomi

Recommended Posts

hello:

 

 

I would like to know why when generating a block with this routine it sometimes changes position.

 

(defun c:gg ()
  (setq bpt (getpoint "\nPick Insertion point: "))
   (setq ss (ssget))
     (setq os (getvar "osmode")) 
     (command "COPYBASE" bpt ss "" "erase" "p" "")
     (setvar "osmode" 0)
     (command "pasteblock" bpt )
     (setvar "osmode" os)
      (princ)
)

 

 

I would like to select objects and make them block in their place. :(

 

Link to comment
Share on other sites

Move osmode 0 before the block command. Could be snapping to something when copybase is called.

or just use "_non" so snaps are ignored.

 

;;----------------------------------------------------------------------------;;
;; Make Quick Block 
(defun C:QB ()
  (setq bpt (getpoint "\nPick Insertion point: "))
  (setq ss (ssget))
  (command "COPYBASE" "_non" bpt ss "")
  (command "Erase" ss "")
  (command "pasteblock" "_non" bpt)
  (princ)
)

 

  • Like 1
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...