Jump to content

identifying object


honey

Recommended Posts

Dear Sirs

 

I am writing a lisp in which i want to fillet, if the object selected is a lwpolyline.

But i am not able to derive, wether or not the selected entity is a lwpolyline. Can anyone help me on this.

 

Thank you in advance.

Link to comment
Share on other sites

Hi,

 

Get the DXF list for you entity using entget function and look for the 0 code group value:

 

(setq ent (car (entsel)))
(if (= "LWPOLYLINE" (cdr (assoc 0 (entget ent))))
 (alert "You selected a polyline")
 (alert "You didn't select a polyline)
)

Link to comment
Share on other sites

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