Total Area Autocad Lisp -

;; Display results (princ "\n========================================") (princ (strcat "\nTotal Area of " (itoa cnt) " object(s):")) (princ "\n----------------------------------------")

;; ============================================================ ;; TOTAL AREA.LSP ;; Command: TA ;; Purpose: Calculate and display total area of selected objects ;; Supports: Circles, Arcs, Ellipses, Polylines, Regions, Hatches, Splines ;; ============================================================ total area autocad lisp

(if (not ss) (princ "\nNo objects selected.") (progn (setq total-area 0.0) (setq obj-list '()) (setq cnt 0) and interior designers

For architects, civil engineers, and interior designers, calculating the total area of multiple spaces is a daily, yet tedious, task. AutoCAD’s native AREA command is powerful for single objects, but what happens when you need the combined square footage of 50 apartments on a floor plan, or 200 different lawn sections in a landscape master plan? total area autocad lisp

the command: