mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Test for 0021134: checkshape command does not return faulty shapes. Test for 0021494: Intersection between cone and sphere fails Test for 0022642: Refactoring of ShapeFix_Wire::FixIntersectingEdges Test for 0022732: Reading a STEP file produces invalid shape
23 lines
468 B
Plaintext
23 lines
468 B
Plaintext
puts "TODO OCC21494 ALL: Error: Intersection between cone and sphere fails"
|
|
|
|
puts "========"
|
|
puts "OCC21494"
|
|
puts "========"
|
|
puts ""
|
|
############################################
|
|
# Intersection between cone and sphere fails
|
|
############################################
|
|
|
|
pcone c 15 0 10
|
|
psphere s 10
|
|
explode c f
|
|
explode s f
|
|
mksurface sc c_1
|
|
mksurface ss s_1
|
|
|
|
intersect i sc ss
|
|
|
|
if { [info exist i_1] == 0 } {
|
|
puts "Error: Intersection between cone and sphere fails"
|
|
}
|