kalai Posted October 12, 2011 Posted October 12, 2011 I need to hatch boundary by selecting internal points in lisp My coding (setq h2 '(380 100)) ; h2 is internal point (command "hatch" "net" 1 45 h2 "") i get error. Help me. Quote
Tharwat Posted October 12, 2011 Posted October 12, 2011 You should pick a point in an internal area to avoid any errors that would occur if it is not ( closed area ). (setq p (getpoint "\n Specify inernal point :")) (command "_.-hatch" "_p" "net" 1. 45. p "") Read this .... entmake hatch Tharwat Quote
Tharwat Posted October 12, 2011 Posted October 12, 2011 thanks it works Glad to hear that . Tharwat Quote
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.