Message 1 of 9
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
we use a lisp to get the acreage of a poly-line for when we measure lot sizes. if possible could someone add extra steps into the routine to take the acreage displayed and automatically create a text with +/- after it at 7.5% of the current scale and certain layer. for example the image
(DEFUN C:AC ( / PLATE SS1 COUNT EMAX)
(WHILE
(NOT (SETQ PLATE
(ENTSEL "\Pick entity for area: "))))
(COMMAND "_.AREA" "_E" PLATE "")
(COMMAND "" "")
(SETQ AA (GETVAR "AREA"))
(PROMPT (STRCAT " AREA "
(RTOS (GETVAR "AREA" ) 2)
" S.F."))
(PROMPT (STRCAT " ACRES "
(RTOS (/ AA 43560) 2)
" AC."))
(PRINC)
)
Solved! Go to Solution.