excelcad Posted December 3, 2013 Share Posted December 3, 2013 A while statement would be what you want... (defun c:BND (/ pt) (while (setq pt (getpoint "\nPick internal point: ")) (command "_.-boundary" "_a" "_i" "_n" "" "" "_non" pt "") ) (princ) ) thanks dude,your lisp really works well. and i wanna ask what's the meaning of those "-a" "-i" "-n". And where can I get more information about other CAD command besides boundary Quote Link to comment Share on other sites More sharing options...
MSasu Posted December 3, 2013 Share Posted December 3, 2013 Those letters call the options of said command. To check them call it in prompt only mode (-BOUNDARY) and see by yourself: "a" stands for Advanced options and so on. As per other commands available, please check the list proposed here. Although, it will be useful to search for tutorials aimed on your interests instead. Quote Link to comment Share on other sites More sharing options...
xxfaxx Posted May 21, 2018 Share Posted May 21, 2018 is there a way to generate the boundaries just selecting the elements without clicking inside anything??? Quote Link to comment Share on other sites More sharing options...
Manzoor Rahman Posted April 2, 2020 Share Posted April 2, 2020 xxfaxx DID U GET YOUR LISP Quote Link to comment Share on other sites More sharing options...
Recommended Posts
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.