Over 1.092.000 registered users (EN+CZ).
AutoCAD tips, Inventor tips, Revit tips.
Try the new precise Engineering calculator.
New AutoCAD 2026 commands and variables.
CAD tip # 3972:
Question
A
Use the MASSPROP command - it will list the volume (and other characteristics) of the selected 3D solids (ACIS bodies).
You can also use the following LISP routine (thanks to MikD):
(defun c:vol () (alert (strcat "Volume is " (rtos (/ (vlax-get-property (vlax-ename->vla-object (car (entsel))) 'volume ) 1000000000.0 ;mm->m3 ) 2 2 ;decimal places ) " m3" ) ) (princ) )
ACADADTMap


10.8.2004
95532×