mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
- Added function checkprops, set default tolerance parameter to 1.0e-4 - Using "area" instead of "square". - Options "-equal\notequal" isn't used together with "-s" in blend and offset test cases. - Correct regressions/differences/improvements and CPU problem (set props tolerance to 0.1) - Corrected test cases to use checkprops proc. - Correct image difference - Updated TODOs in test cases. - Updated test cases to get correct images of result shape
28 lines
689 B
Plaintext
28 lines
689 B
Plaintext
puts "=========="
|
|
puts "OCC24519"
|
|
puts "=========="
|
|
puts ""
|
|
####################################################################
|
|
# 0024519: Intersection of a cylinder and a plane does not return
|
|
####################################################################
|
|
|
|
restore [locate_data_file bug24519_cylinder.brep] cy
|
|
restore [locate_data_file bug24519_plane.brep] pl
|
|
|
|
bsection r1 cy pl
|
|
section r2 cy pl
|
|
set exp1 [explode r1]
|
|
set exp2 [explode r2]
|
|
|
|
if { $exp1 != "r1_1" } {
|
|
puts "Error: First intersection is not returned"
|
|
}
|
|
if { $exp2 != "r2_1" } {
|
|
puts "Error: Second intersection is not returned"
|
|
}
|
|
|
|
checksection r1
|
|
checksection r2
|
|
checkprops r1 -l 3.83537
|
|
checkprops r2 -l 3.83537
|