mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Method IntTools_FaceFace::MakeCurve is modified: reached tolerances 2d and 3d of approximator are not used for edges.
30 lines
793 B
Plaintext
30 lines
793 B
Plaintext
puts "TODO OCC28802 Linux: Error : The area of result shape is"
|
|
puts "TODO OCC24694 Windows: Error : The result of cut operation is self-interfered shape"
|
|
|
|
puts "=========="
|
|
puts "OCC26938 "
|
|
puts "=========="
|
|
puts ""
|
|
#####################################################
|
|
# Boolean operations fail between two ellipsoids
|
|
#####################################################
|
|
|
|
restore [locate_data_file bug26938.brep] a
|
|
explode a
|
|
|
|
bcut result a_1 a_2
|
|
|
|
# Check shape validity
|
|
checkshape result
|
|
|
|
# Check area
|
|
checkprops result -s 8.7408e+006
|
|
|
|
# Check self-intersection
|
|
set info [bopcheck result]
|
|
if { [regexp "This shape seems to be OK" ${info}] != 1 } {
|
|
puts "Error : The result of cut operation is self-interfered shape"
|
|
}
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|