mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
ApproxInt_Approx, ApproxInt_KnotTools, BRepApprox_Approx, GeomInt_IntSS, IntTools_FaceFace: Analysis of curvature is added for adjusting ParametrizationType IntPatch_Intersection.cxx - adding methods for estimation of UV max step depending on used surfaces GeomInt_IntSS.cxx, IntTools_FaceFace.cxx - using methods for max step estimation Approx_SameParameter.cxx - adding control against big values. BOPAlgo_PaveFiller_6.cxx - adjusting position of faces before intersection
28 lines
658 B
Plaintext
28 lines
658 B
Plaintext
puts "========"
|
|
puts "OCC28764"
|
|
puts "========"
|
|
puts ""
|
|
#################################################
|
|
# [Regression to 7.0] Intersection of faces gives exception in debug mode
|
|
#################################################
|
|
|
|
restore [locate_data_file bug28764_ff.brep] f
|
|
explode f
|
|
|
|
####
|
|
|
|
axo
|
|
don f
|
|
fit
|
|
|
|
# Before the fix: Exception in Debug-mode only
|
|
regexp {Tolerance Reached=+([-0-9.+eE]+)\n+([-0-9.+eE]+)} [bopcurves f_1 f_2 -2d] full Toler NbCurv
|
|
|
|
checkreal Tolerance $Toler 2.1053092622220167e-07 1.0e-7 0.0
|
|
|
|
if {$NbCurv != 1} {
|
|
puts "Error: Please check NbCurves for intersector"
|
|
}
|
|
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|