CUArchgrad Posted January 5, 2009 Posted January 5, 2009 I have a 3D model in Autodesk of an auditorium and I'm trying to figure out how to calculate the negative of the model to get the volume of the space. I have the section and plan if there is a way besides 3D to do this as well. Anyone have an idea? Quote
Blueflies Posted May 6, 2009 Posted May 6, 2009 Not sure if you can do that without LDD or Civil3D. In Civil3D it's very simple once you have an existing and proposed surface built. Quote
Efeezy Posted June 22, 2010 Posted June 22, 2010 (defun c:LeeMacVolume ( / ent obj ) (vl-load-com) (if (setq ent (car (entsel))) (if (vlax-property-available-p (setq obj (vlax-ename->vla-object ent)) 'Volume) (alert (strcat "Volume: " (rtos (vla-get-Volume obj)))) (alert "Selected Object Does not have a Volume Property") ) ) (princ) ) Quote
Efeezy Posted June 22, 2010 Posted June 22, 2010 Please, thank Lee Mac for this Lisp, he is a member of this forum. Quote
Recommended Posts
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.