mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Test for 0022602: Improvement in notched healing Test for 0022750: Boolean operation: Bug in Fuse Test for 0022821: Crash with BRepFilletAPI_MakeFillet Test for 0023090: Reading a STEP file produces invalid shape Test for 0023163: Intersection of tori fails to produce results Test for 0023343: Crash (ACCESS VIOLATION) in GeomPlate_BuildPlateSurface / MakeApprox if init Surface is set Test for 0023386: BRepAlgoAPI_Fuse on two disjoint shapes sometimes loses all geometry from one of the shapes Test for 0023451: FixMissingSeam constructs intersecting wires Test for 0023497: Units package raises exception for composite units Test for 0023638: Reading IGES file produced invalid shape Test for 0023667: checkshape command does not detect problems in the attached shape Test for 0023671: pload function does not work if DRAWDEFAULT file has win format Test for 0024185: Wrong projection of a wire to a face Test for 0024215: Error in offset (bad curve) Test for 0024251: Command checkshape does not report a problem on first call after fixshape Test for 0024365: BRepAlgoAPI_Section wrong result, BRepAlgo_Section good result Test for 0024421: Sewing changes orientations of some subshapes. Test for 0024429: Cylinder-torus intersection throws an exception and produces no result
55 lines
1.2 KiB
Plaintext
55 lines
1.2 KiB
Plaintext
puts "========"
|
|
puts "OCC23386"
|
|
puts "========"
|
|
puts ""
|
|
################################################################################################
|
|
## BRepAlgoAPI_Fuse on two disjoint shapes sometimes loses all geometry from one of the shapes
|
|
################################################################################################
|
|
|
|
restore [locate_data_file bug23386_a.brep] a
|
|
restore [locate_data_file bug23386_b.brep] b
|
|
|
|
bfuse result a b
|
|
|
|
set nbshapes_a "
|
|
Number of shapes in shape
|
|
VERTEX : 383
|
|
EDGE : 686
|
|
WIRE : 297
|
|
FACE : 297
|
|
SHELL : 2
|
|
SOLID : 1
|
|
COMPSOLID : 0
|
|
COMPOUND : 0
|
|
SHAPE : 1666
|
|
"
|
|
checknbshapes a -ref ${nbshapes_a} -t -m "First initial shape"
|
|
|
|
set nbshapes_b "
|
|
Number of shapes in shape
|
|
VERTEX : 6
|
|
EDGE : 9
|
|
WIRE : 5
|
|
FACE : 5
|
|
SHELL : 1
|
|
SOLID : 1
|
|
COMPSOLID : 0
|
|
COMPOUND : 0
|
|
SHAPE : 27
|
|
"
|
|
checknbshapes b -ref ${nbshapes_b} -t -m "Second initial shape"
|
|
|
|
set nbshapes_expected "
|
|
Number of shapes in shape
|
|
VERTEX : 388
|
|
EDGE : 695
|
|
WIRE : 302
|
|
FACE : 302
|
|
SHELL : 3
|
|
SOLID : 2
|
|
COMPSOLID : 0
|
|
COMPOUND : 1
|
|
SHAPE : 1693
|
|
"
|
|
checknbshapes result -ref ${nbshapes_expected} -t -m "result of fuse operation"
|