Jump to content

COORDINATE


mousho

Recommended Posts

It is a bit more complex but a field can get X Y & Z of a point just go into mtext and use the field option and look at the expression created need to do 3 times. Can then use this method in a lisp. Need Lee-mac object id lisp. Just google answer should be out there all done.

Link to comment
Share on other sites

I use a block insertion

;| 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)
)

I use the same concept when labeling elevations.

 

Google "label coordinates AutoCAD Lisp", doesn't appear you searched the web very hard.

Pt_Coordinates.dwg

Link to comment
Share on other sites

thx tombu it was very helpful and im sure that im going to add it to my lisp routine,

but im looking for lisp that not using block

i find this lisp in the web and it more closer to what im looking,

the lisp here add automatically coord at each vertex

i want the option to add coord at free choose

any idea??

 

ptdef-xyz_field.lsp

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