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_6/bug27704
emv 66cce03ae5 0027704: Numeric inaccuracy due to huge extension of the offset faces
The max extension value of the faces in offset operation has been decreased
to 1.e+7 value to avoid the lack of precision in the calculations.

Update of test cases according to the new behavior
2016-07-28 15:00:31 +03:00

23 lines
656 B
Plaintext

puts "========"
puts "OCC27704"
puts "========"
puts ""
#################################################
# Numeric inaccuracy due to huge extension of the offset faces
#################################################
# Input shell contains two planar faces with linear edges.
# The result of offset operation is also expected to contain
# only simple geometries (planes, lines, 2d lines).
# Due to inaccuracy SameParameter can convert 2d lines
# into 2d BSpline curves.
restore [locate_data_file bug27704.brep] s
offsetparameter 1e-7 p i
offsetload s 1
offsetperform result
if {[regexp {BSpline} [dump result]]} {
puts "Error: BSpline is created"
}