[Search tip detail and code files using keywords, tip number, author name, etc ]
 
    For tip to function correctly, you must ensure that the downloaded file name matches the file name
    displayed in the Rename File To field. Please rename downloaded files when necessary.
Break at a Selected Point
Tip# 3927 By Leonid Nemirovsky On 02-Jul-2012
0
Rated By 0 users Downloaded : 577
Categories : 2D Operations
Software type : AutoCAD 2013
Rename File To : brp.lsp,__MACOSX/,__MACOSX/._brp.lsp
Use this macro to improve on the Break command.

Frequent tipster Leonid Nemirovsky shares a small macro that he created that helps speed things up in AutoCAD's Break command.

"This macro improves the Break command, and is useful when you need to break an object at a selected point. It lets you select the point on the object first, then breaks it at the selected point.

(defun c:brp ()
(setq pt1 (getpoint"Select Braking Point: "))
(command"break" pt1 "@" "")
(princ)
)

Notes from Cadalyst Tip Reviewer Brian Benton: Load the LISP file, then type BRP to start the command. Select a point on an object and it will be broken at that point — it's very simple and easy to do. If you don’t want to use this macro, the Break command does have a First option: Instead of breaking the object where you select it (the default behavior of the Break command), type the letter F after you select the object. This allows you to select the object, then pick where you want to break it, and then a second point (which can be the same point as your first point).

 

Average Rating:
0


User comments
Comment by Cardenas,J. Raul
Posted on 2012-07-03 09:34:06
Auto Cad has "Break at Point" tool bar in Modify palette.