mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Range of changing of some analytic curves is computed by other methods. It allows computing face's boundaries with more precise. Tolerance was increased to provide successful work of some algorithms. Functions BRepOffsetAPI_MiddlePath::Build() and ApproxWithPCurves(...) (file IntTools_FaceFace.cxx) were changed according to new result of algorithm's work. It is possibly for "outboundaried faces" (see bug#23675) to compute incorrect UV-Bounds, when first parameter is more than last. To avoid it, extended control of computed bounds was added. Function for fail sameparameter fixing was added to HLRAppli_ReflectLines to avoid creation bad shapes after algorithm's work. In file ShapeFix_ComposeShell.cxx only text formatting was changed. Some test cases are changed according to their new behavior. Added test case bugs/moddata_3/bug23511
28 lines
792 B
Plaintext
Executable File
28 lines
792 B
Plaintext
Executable File
puts "================"
|
|
puts "OCC76"
|
|
puts "================"
|
|
puts ""
|
|
|
|
set vol1_exp 3050.42
|
|
set vol2_exp 10195.3
|
|
|
|
restore [locate_data_file shading_177.brep] sh1
|
|
checkshape sh1
|
|
regexp {Mass +: +([-0-9.+eE]+)} [vprops sh1] full l1
|
|
|
|
restore [locate_data_file OCC76-2.brep] sh2
|
|
checkshape sh2
|
|
regexp {Mass +: +([-0-9.+eE]+)} [vprops sh2] full l2
|
|
|
|
if { [expr abs([expr $l1 - $vol1_exp])] > 0.00999} {
|
|
puts "Error : Volume of OCC76-1.brep is calculated wrongly becuase $vol1_exp value must be but $l1 is"
|
|
} else {
|
|
puts " Volume of OCC76-1.brep is right calculated"
|
|
}
|
|
|
|
if { [expr abs([expr $l2 - $vol2_exp])] > 0.00999} {
|
|
puts "Error : Volume of OCC76-2.brep is calculated wrongly because $vol2_exp value must be but $l2 is"
|
|
} else {
|
|
puts " Volume of OCC76-2.brep is right calculated"
|
|
}
|