Jump to content

Lisp, select text and create a circle with z value extracted from the text and x, y indicated by the user.


civilwar111

Recommended Posts

(defun C:elev_to_circle_4 ()
  (setq h 0.7)
  (while
    (setq ent1 (car (entsel "\nSelev Niv 1")))
    (setq p1 (getpoint "Donde:"))
    (setq ent1 (entget ent1))
    (setq ent1 (cdr (assoc 1 ent1)))
    (setq ent1 (distof ent1 2))
    (setq x (car p1))
    (setq y (cadr p1))
    (command "_circle" (list x y ent1) h)
    (command "_text" "j" "m" p1 h 0 (rtos ent1 2 3) "")
  )
  )

 

My code works, but the z-elevation sets it to zero if I select the center or end of an element from autcad.


Any ideas?

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