mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Method EstimateDeflection has been added to BRepLib in order to check and update value of deflection provided by Poly_Triangulation; Introduction of Poly_TriangulationParameters intended to keep info about initial parameters of mesh stored by Poly_Triangulation; BRepMesh stores user-specified parameters to Poly_Triangulation via Poly_TriangulationParameters; Prefer initial parameters of mesh generator stored in Poly_Triangulation during check of mesh consistency.
37 lines
919 B
Plaintext
37 lines
919 B
Plaintext
puts "========"
|
|
puts "OCC27119"
|
|
puts "========"
|
|
puts ""
|
|
###########################################
|
|
## Regression: Draw command "incmesh" hangs on the attacheced face.
|
|
###########################################
|
|
|
|
set BugNumber OCC27119
|
|
|
|
restore [locate_data_file bug27119_GrossPlatePart3Step2TransformedFace.brep] result
|
|
|
|
dchrono t restart
|
|
incmesh result 1.e-5
|
|
dchrono t stop counter incmesh
|
|
|
|
set tri 0
|
|
set nod 0
|
|
set def 0
|
|
|
|
set tri_info [trinfo result]
|
|
regexp { +([-0-9.+eE]+) +triangles} $tri_info full tri
|
|
regexp { +([-0-9.+eE]+) +nodes} $tri_info full nod
|
|
regexp { deflection +([-0-9.+eE]+)} $tri_info full def
|
|
|
|
set ref_tri 7857
|
|
set ref_nod 7859
|
|
set ref_def 1.5252689837551246e-12
|
|
set tol_rel 0.01
|
|
|
|
# Computes deviation of the value from specified one
|
|
checkreal "Nb of triangles" $tri $ref_tri 0 $tol_rel
|
|
checkreal "Nb of nodes" $nod $ref_nod 0 $tol_rel
|
|
checkreal "Deflection" $def $ref_def 1.e-12 0
|
|
|
|
set 3dviewer 1
|