mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-02 17:46:22 +03:00
The following classes have been removed as obsolete: - BRepAlgo_BooleanOperation - BRepAlgo_Fuse - BRepAlgo_Cut - BRepAlgo_Common - BRepAlgo_Section The corresponding classes from BRepAlgoAPI package have to be used instead. Draw commands: - fuse - cut - common - section/psection have also been removed as obsolete. The corresponding commands for modern Boolean operations algorithm (bfuse/bcut/bcommon/bsection) have to be used instead. Adjustment of the test cases to use the commands for modern algorithm.
21 lines
528 B
Plaintext
21 lines
528 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 r cy pl
|
|
set exp [explode r]
|
|
|
|
if { $exp != "r_1" } {
|
|
puts "Error: First intersection is not returned"
|
|
}
|
|
|
|
checksection r -r 2
|
|
checkprops r -l 3.83537
|