Jump to content

Is it possible to create Coordinates Block with diesel expressions


bijoymano

Recommended Posts

  • 3 weeks later...

Lisp code to insert coordinate label block:

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

Required Pt_Coordinates.dwg to insert attached.

Pt_Coordinates.dwg

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