mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
1. New testgrid "lowalgos/intss" has been created. It will contain all test cases on geometrical intersection of two surfaces ("intersect" DRAW-command) and two faces ("bopcurves" DRAW-command). 2. New test case for the issue #28493 has been created because the problem is not reproduced on MASTER. 3. Test case (lowalgos/intss/bug24472) for the issue #29501 has been modified in order to check loops of the resulting intersection curves.
22 lines
651 B
Plaintext
22 lines
651 B
Plaintext
puts "TODO OCC27623 ALL: ERROR: OCC27623 is reproduced."
|
|
|
|
puts "========"
|
|
puts "OCC27623"
|
|
puts "========"
|
|
puts ""
|
|
#####################################################################
|
|
# Cannot find intersection line between two trimmed planar surfaces
|
|
#####################################################################
|
|
|
|
plane s1 0 0 0 0 0 1 1 0 0
|
|
trim s1 s1 -10 10 -10 10
|
|
plane s2 0 0 10 1 0 0 0 0 1
|
|
trim s2 s2 -10+1.0e-5 10 -10+1.0e-5 10
|
|
|
|
intersect ii s1 s2 4.0e-4
|
|
|
|
set bug_info [string trim [whatis ii]]
|
|
if {[string length $bug_info] == 7} {
|
|
puts "ERROR: OCC27623 is reproduced. Intersection of trimmed planar surface has not been detected."
|
|
}
|