mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Test for 0023171: Got wrong result after stitching Test for 0023612: BRepPrimAPI_MakeTorus Test for 0023610: checkshape command does not detect mismatch of the tolerance values among the sub-shapes of the shape Test for 0023660: 'bsection' produces result with gap Test for 0024397: BRepBuilderAPI_Copy works not correct Test for 0023927: BRepProj_Projection produces Edge with one Vertex outside from curve Test for 0023902: Cannot build fillet Test for 0023669: Error in Boolean operations algorithm: section between cylindrical face and prism is incomplete Test for 0023660: 'bsection' produces result with gap Test for 0024100: Bad pcurve is built on a face while converting the shape from STEP format. Test for 0024319: Sewing makes a solid transparent Test for 0024302: Section operation modifies input argument Test for 0024397: BRepBuilderAPI_Copy works not correct Test for 0024418: Wrong section curves when intersecting analytical surfaces
34 lines
748 B
Plaintext
34 lines
748 B
Plaintext
puts "TODO OCC23902 ALL: Error: Cannot build fillet"
|
|
|
|
puts "========"
|
|
puts "OCC23902"
|
|
puts "========"
|
|
puts ""
|
|
#####################
|
|
# Cannot build fillet
|
|
#####################
|
|
|
|
bsplinecurve r 4 3 1 5 2 2 3 5 0 8 0 1 2 8 2 1 4 8 3 1 4 8 3 1 4 8 3 1 6 8 4 1 10 8 10 1
|
|
|
|
mkedge e1 r
|
|
vertex v1 10 8 10
|
|
vertex v2 5 8 8
|
|
edge e2 v1 v2
|
|
vertex v3 0 8 0
|
|
edge e3 v2 v3
|
|
wire w e1 e2 e3
|
|
mkplane f w
|
|
prism p f 0 5 0
|
|
explode p e
|
|
|
|
if {![catch {fillet result p 0.5 p_3}]} {
|
|
if {[regexp "This shape seems to be valid" [checkshape result] ] != 1} {
|
|
puts "Error: Cannot build fillet (1)"
|
|
}
|
|
if {[regexp "This shape seems to be OK" [bopcheck result] ] != 1} {
|
|
puts "Error: Cannot build fillet (2)"
|
|
}
|
|
} else {
|
|
puts "Error: Cannot build fillet (3)"
|
|
}
|