1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/modalg_7/bug25730
abv 2a9be0e22b 0028131: BRepOffset_MakeOffset can't create offset with a face which created by filling 3 bsplinecurve
Handling of degenerated points (with all derivatives zero) in GeomEvaluator_OffsetSurface is improved by iterative movement towards middle of the surface (extension of one-step approach implemented earlier in #28112).
2017-08-30 11:22:47 +03:00

27 lines
889 B
Plaintext
Executable File

puts "# ===================================================================="
puts "# OCC25730: result of MakeThickSolid aborts the BOPCheck in Geom_OffsetSurface::SetD0"
puts "# ===================================================================="
puts ""
puts "# Load shape"
restore [locate_data_file bug25730_thickness8-draw-fillet001.brep] Fillet001
explode Fillet001 F
puts "# Perform offset"
offsetparameter 1e-7 p a
offsetload Fillet001 -1 Fillet001_4
offsetperform Thickness
puts "# Check result"
if { [regexp "errors" [bopcheck Fillet001]] == 1 } {
puts "Error : bopcheck fails on initial shape"
}
if { [regexp "errors" [bopcheck Thickness]] == 1 } {
puts "Error : bopcheck fails on offsetted shape"
}
checkview -display Fillet001 -2d -path ${imagedir}/${test_image}-Fillet001-2d.png
checkview -display Thickness -2d -path ${imagedir}/${test_image}-Thickness-2d.png