mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
New algorithms calculating global properties on mesh data have been added: - BRepGProp_MeshCinert computes the global properties of polylines represented by a set of points; - BRepGProp_MeshProps computes the global properties of a surface mesh. Existing tool BRepGProp now automatically uses new algorithm for triangulation-only faces. By default, algorithm will use exact geometry objects (surfaces), when it is available (as before the patch); this behavior can be switched by a new flag UseTriangulation, forcing usage of triangulation instead of exact geometry when both defined.
20 lines
506 B
Plaintext
20 lines
506 B
Plaintext
|
|
puts "0029731: Modeling Algorithms - calculation of surface/volume of tessellated geometry"
|
|
puts ""
|
|
|
|
#############################################################
|
|
# Surface and volume calculation on the triangulation built on a sphere
|
|
#############################################################
|
|
|
|
psphere sp1 10
|
|
checkprops sp1 -v 4188.79
|
|
checkprops sp1 -s 1256.64
|
|
checkprops sp1 -l 62.8319
|
|
|
|
incmesh sp1 0.01
|
|
tclean -geom sp1
|
|
|
|
checkprops sp1 -v 4183.13
|
|
checkprops sp1 -s 1255.75
|
|
checkprops sp1 -l 62.8215
|