Jump to content

Recommended Posts

Posted

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?

  • 4 months later...
Posted

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.

  • 1 year later...
Posted

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

)

Posted

Please, thank Lee Mac for this Lisp, he is a member of this forum.

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