mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-07-30 13:05:50 +03:00
Adding procedures checkcolor and checkpoint. Modified test cases which are used QAGetPixelColor or QAAISGetPixelColor2d Allow using command QAAISGetPixelColor2d on WNT Rename test case tests/bugs/vis/bug19619 to pro19619 Added test cases to modalg and moddata
38 lines
1021 B
Plaintext
Executable File
38 lines
1021 B
Plaintext
Executable File
puts "TODO OCC12345 ALL: Faulty : command was FAILED"
|
|
puts "TODO OCC12345 ALL: Faulty shapes in variables faulty_1 to faulty_"
|
|
puts "TODO OCC12345 ALL: Error : The square of result shape is"
|
|
|
|
pload QAcommands
|
|
|
|
puts "============"
|
|
puts "OCC825"
|
|
puts "============"
|
|
puts ""
|
|
######################################
|
|
## BRepAlgoAPI_Cut fails on sphere and b-spline face
|
|
######################################
|
|
|
|
if { [ catch { set info_result [OCC825 a1 a2 a3 result1 result2] } ] } {
|
|
puts "Faulty : an exception was caught"
|
|
} else {
|
|
if { [lsearch ${info_result} FAILED] > -1} {
|
|
puts "Faulty : command was FAILED"
|
|
}
|
|
puts [checkshape result1]
|
|
puts [checkshape result2]
|
|
|
|
set ExplodeList [explode result1]
|
|
if {[llength ${ExplodeList}] < 1} {
|
|
puts "Faulty : Resulting shape is empty COMPOUND"
|
|
}
|
|
set ExplodeList [explode result2]
|
|
if {[llength ${ExplodeList}] < 1} {
|
|
puts "Faulty : Resulting shape is empty COMPOUND"
|
|
}
|
|
|
|
renamevar result1 result
|
|
}
|
|
|
|
set square 0
|
|
set 2dviewer 0
|