1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/bugs/modalg_7/bug29731
ifv 4b114473ef 0029734: Modeling Algorithms - Compute global properties of tessellated shape
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.
2018-06-23 13:12:36 +03:00

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