mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Changed the rules for the types of the arguments for different operations: 1. FUSE: All arguments and tools should have the same dimension; 2. CUT: The MAXIMAL dimension of the ARGUMENTS should be less or equal to the MINIMAL dimension of the TOOLS; 3. CUT21: The MINIMAL dimension of ARGUMENTS should be grater or equal to the MAXIMAL dimension of the TOOLS; 4. COMMON: The arguments and tools could have any dimensions. For the arguments of collection type (WIRE, SHELL, COMPSOLID) the type will be passed into the result of the operation. The documentation should be updated according to new behavior. Documentation has been updated. Implemented suggestions by MSV and some grammar changes. Test cases for issue CR26565 Correction of test cases for issue CR26565 Correction of test cases for issue CR26565
72 lines
1.8 KiB
Plaintext
72 lines
1.8 KiB
Plaintext
puts "============"
|
|
puts "OCC24811"
|
|
puts "============"
|
|
puts ""
|
|
#################################
|
|
# Intersection is insufficient
|
|
#################################
|
|
|
|
set p1_1 -2.22458486160362e-016
|
|
set p1_2 1
|
|
set p1_3 0
|
|
|
|
set p2_1 0.0202691578002498
|
|
set p2_2 0.999794559518151
|
|
set p2_3 0
|
|
|
|
restore [locate_data_file bug24811_e1.brep] curve
|
|
restore [locate_data_file bug24811_e2.brep] circle
|
|
|
|
bop curve circle
|
|
bopcut result
|
|
|
|
if { [llength [explode result]] != 4 } {
|
|
puts "Error: wrong number of intersections. Should be result_1 result_2 result_3 result_4"
|
|
} else {
|
|
puts "OK: right number of intersections"
|
|
}
|
|
|
|
explode result_2
|
|
set info1 [dump result_2_1]
|
|
regexp {Point 3D +: +([-0-9.+eE]+), +([-0-9.+eE]+), +([-0-9.+eE]+)} $info1 full x1 y1 z1
|
|
regexp {Tolerance +: +([-0-9.+eE]+)} $info1 full tol1
|
|
|
|
if { $p1_1 >= [expr $x1 - $tol1] && $p1_1 <= [expr $x1 + $tol1] } {
|
|
puts "OK: point1_1 is correct"
|
|
} else {
|
|
puts "Error: point1_1 is incorrect"
|
|
}
|
|
if { $p1_2 >= [expr $y1 - $tol1] && $p1_2 <= [expr $y1 + $tol1] } {
|
|
puts "OK: point1_2 is correct"
|
|
} else {
|
|
puts "Error: point1_2 is incorrect"
|
|
}
|
|
if { $p1_3 >= [expr $z1 - $tol1] && $p1_3 <= [expr $z1 + $tol1] } {
|
|
puts "OK: point1_3 is correct"
|
|
} else {
|
|
puts "Error: point1_3 is incorrect"
|
|
}
|
|
|
|
|
|
set info2 [dump result_2_2]
|
|
regexp {Point 3D +: +([-0-9.+eE]+), +([-0-9.+eE]+), +([-0-9.+eE]+)} $info2 full x2 y2 z2
|
|
regexp {Tolerance +: +([-0-9.+eE]+)} $info2 full tol2
|
|
|
|
if { $p2_1 >= [expr $x2 - $tol2] && $p2_1 <= [expr $x2 + $tol2] } {
|
|
puts "OK: point2_1 is correct"
|
|
} else {
|
|
puts "Error: point2_1 is incorrect"
|
|
}
|
|
if { $p2_2 >= [expr $y2 - $tol2] && $p2_2 <= [expr $y2 + $tol2] } {
|
|
puts "OK: point2_2 is correct"
|
|
} else {
|
|
puts "Error: point2_2 is incorrect"
|
|
}
|
|
if { $p2_3 >= [expr $z2 - $tol2] && $p2_3 <= [expr $z2 + $tol2] } {
|
|
puts "OK: point2_3 is correct"
|
|
} else {
|
|
puts "Error: point2_3 is incorrect"
|
|
}
|
|
|
|
set 2dviewer 1
|