Jump to content

x,y coordinates for a selected object


Recommended Posts

Posted

Good Day sir/maam..

Can someone help me!!!!!

is thier lisp program that will create text that displays the x,y

coordinates for a selected object?

 

thank you !!!

sir

Posted

Plenty of them here just search for "label points" various options, plain text, stacked x/y, leader style etc.

Posted

Old one to get you started, you'll need to place Pt_Coordinates.dwg attached into a support directory along with the code.

;| Label for Point.
  PtLabel.lsp BY: TOM BEAUFORD
  ^P(or C:Label (load "PtLabel.lsp"));PtLabel
  BeaufordT@LeonCountyFL.gov
  Leon County Public Works/Engineering
==================================================================|;

(defun C:PtLabel (/ ATTDIA)
     (setq ATTDIA (getvar "ATTDIA"))
     (setvar "ATTDIA" 0)
     (command "._INSERT"
              "Pt_Coordinates"
              (getpoint "Pick Point: ")						;Insert pt
              (/ 0.1 (getvar "cannoscalevalue"))				;X Scale
;               (* (getvar "DIMTXT") (getvar "DIMSCALE"))	;X Scale (Alternate)
              ""							;Y Scale
;               ""				                	;Rotation
              (*(/(getvar "viewtwist")pi)-180)	;Rotation
              ""					        	;Easting
              ""					        	;Northing
     )
     (setvar "ATTDIA" ATTDIA)
     (entupd (entlast))
;      (command "._DDATTE" (entlast))
     (princ)
)

Pt_Coordinates.dwg

Posted

Here's a simple one that shows the coordinates in the command line.

 

(defun c:XY (/ p x y)
 (while
   (setq p (getpoint "\nPick Point: "))
     (princ
       (strcat
         " X = " (rtos (car p))
         " Y = " (rtos (cadr p))
       )
     )
 )
)

Steve

Posted

thank you masters:shock::shock::shock::shock: thank you so much!!!

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