Jump to content

Dear guys . I'm finding lisp "@ break multiline just one select" thank you


nest1291

Recommended Posts

==== I have this lisp now. ======

(defun C:BB(/ ss sno pt1 pt2 no x)
      (princ " = BREAK2P")
      (setq ss (ssget))
      (setq sno (sslength ss))
      (setq pt1 (getpoint "\n>>> First Point : "))
      (setq pt2 (getpoint pt1 "\n>>> Second Point : "))
      (setq no 0)
      (repeat sno
         (setq x (ssname ss no))
         (command "break" x pt1 pt2)
         (setq no (1+ no))
      )(prin1)
)

Edited by nest1291
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...