Boundary
Comments
-
I'm trying to adapt a lisp routine I used with Acad R12 (dos) to create a pline along a boundary. Bpoly was used in the routine and it worked fine. The equivalent to bpoly in Bricscad is Boundary and this command starts with a dialog box which cannot be turned off to automate the routine. I just want to click inside an area and generate the pline automatically, as this worked just fine with acad, without any dialog box. This is an extract of the routine used:(setq pt (getpoint)) (setq peri (c:bpoly pt))Is there another way to make this work?
0 -
Try -boundary, works for me. Many/most commands work without the dialogue box when you put a minus sign in front, Bpoly doesn't because it tells the program "boundary".
0 -
You save my life! You are right. Works just fine.Thanks for your reply
0