c# - Calculate the volume of a GeometryModel3D -


i'm using helixtoolkit's modelimporter class(helix 3d toolkit collection of custom controls , helper classes wpf.) loading 3d objects stl files (stereolithography file format native stereolithography cad software created 3d systems). 3d models contain modelgroup3d object 1 or several geometrymodel3d objects inside depending on how many parts model comprised from. calculate volume of whole 3d model. searched similar questions , 1 answered 1 calculate volume of 3d mesh i'm not sure how reform solution. since i'm newbie appreciated.

additionally models i'm loading closed meshes.

thanks

first convert surface mesh volume mesh. example, can convert triangulated surface mesh tetrahedral mesh. 1 way constructing constrained delaunay triangulation of surface triangles.

next, can estimate of volume enclosed surface mesh, summing volumes of elements in volume mesh. example, summing volumes of tetrahedrons in mesh.


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -