Jump to content

Recommended Posts

Posted

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.

Posted

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

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...