mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Test for 0023838: Standard_OutOfRange in Geom_OffsetSurface::LocalDN (called by BRepFill_PipeShell) Test for 0023866: GccAna_Circ2d3Tan does not find a circle Test for 0023925: BRepFeat_SplitShape produces invalid shape Test for 0023942: Pipe algorithms unrobust to number rounding Test for 0025385: steep increase in tolerance by intersection Test for 0025395: SIGSEGV in BRepOffsetAPI_MakeThickSolid Test for 0025458: can a sweep be used to create 1-fold tori (using a closed wire as path) Test for 0025478: Fillets can not touch Test for 0025481: Edge must not contain obsolete curve representations Test for 0025515: Boolean operation become worse for unknown reason. Test for 0025521: Fillet creates shell with bad orientation of SubShape Test for 0025551: BRepMesh can produce internal nodes outside the face interior based on distorted BSpline surface Test for 0025586: Poor mesh quality, or failure of meshing for closed extruded surfaces with holes Test for 0025626: Loft of ellipses shows wrinkle near seam edge Test for 0025628: BRepMesh fails to mesh face with open wire, considered as correct by checkshape Test for 0025693: Wire of BSplines fails bopcheck Test for 0025730: result of MakeThickSolid aborts the BOPCheck in Geom_OffsetSurface::SetD0 Test for 0025738: BRepMesh fails to produce correct mesh for the face Test for 0025776: HLR returns intersecting edges in OutLineV of helical sweep Test for 0025798: BRepFeat_SplitShape returns invalid result Test for 0025817: crescent face is not meshed Test for 0025827: BRepMesh does not synchronize parameters of glued vertices on small edges Test for 0025837: Bad triangulation when IGES loaded in meters Test for 0025852: Text to BRep algorithm produces bad faces for circled symbols Test for 0025856: BRepOffsetAPI_ThruSections returns an invalid shape if one wire contains degenerated edges Test for 0025879: result of blend fails the bopcheck Test for 0025967: Shape Healing fails to correct a face with missing poles and pcurves Test for 0026052: Missing pcurves are computed incorrectly on two connected faces laying on the same surface Test for 0025061: BRepMesh should skip internal wires with self intersections to produce mesh for the shape anyway Test for 0024490: Computed surface properties differ substantially depending on NaturalRestriction flag Test for 0024568: Split shape produces an invalid result Test for 0024692: fuseedge corruption of spherical edge Test for 0024772: Intersection of cylinder and cone produces incorrect results Test for 0024954: BRepBuilderAPI_MakeFace adds wire with aribitary orientation Test for 0025104: Prism from BSpline curve can not be chamfered Test for 0025206: Fillet creates edge with C0 continuity Test for 0025979: fillet creates faces with non-closed wires Test for 0025983: Fusion of sweep and its mirror invalid Test for 0025994: Boolean fuse result in invalid result. Test for 0026034: Result of revolution aborts the bopcheck if translated Test for 0026077: nurbsconvert of psphere fails the bopargcheck Test for 0025989: toridial surface gets damaged in STEP export
58 lines
2.4 KiB
Plaintext
58 lines
2.4 KiB
Plaintext
puts "TODO OCC26077 ALL: Error: Boolean operation of the given type is not allowed on the given inputs"
|
|
puts "TODO OCC26077 ALL: ERROR: OCC26077 is reproduced."
|
|
puts "TODO OCC26077 ALL: ERROR: Problematic shape in OCC26077:"
|
|
|
|
puts "========"
|
|
puts "OCC26077"
|
|
puts "========"
|
|
puts ""
|
|
#################################################
|
|
# nurbsconvert of psphere fails the bopargcheck
|
|
#################################################
|
|
|
|
ellipse Ellipse002-untrimmed 0 0 0 8.2 6.2
|
|
mkedge Ellipse002 Ellipse002-untrimmed 0 6.283185307179586
|
|
trotate Ellipse002 0 0 0 0 0 1 90
|
|
ttranslate Ellipse002 0 0 15
|
|
prism Extrude_Ellipse Ellipse002 0 0 6
|
|
ttranslate Extrude_Ellipse 0 0 -4
|
|
restore [locate_data_file bug26077_ellipsoid1-tcl-Loft-00-section.brep] Loft-00-section
|
|
restore [locate_data_file bug26077_ellipsoid1-tcl-Loft-01-section.brep] Loft-01-section
|
|
thrusections Loft 1 0 Loft-00-section Loft-01-section
|
|
psphere Ellipsoid-sphere 12.5
|
|
deform Ellipsoid Ellipsoid-sphere 1 1.04 1.2
|
|
|
|
set bug_info [string trim [bopargcheck Loft]]
|
|
if {$bug_info != "Shape(s) seem(s) to be valid for BOP."} {
|
|
puts "ERROR: Problematic shape in OCC26077: Shape Loft is not valid for BOP."
|
|
}
|
|
|
|
set bug_info [string trim [bopargcheck Ellipsoid]]
|
|
if {$bug_info != "Shape(s) seem(s) to be valid for BOP."} {
|
|
puts "ERROR: Problematic shape in OCC26077: Shape Ellipsoid is not valid for BOP."
|
|
}
|
|
|
|
set bug_info [string trim [bfuse Fusion Loft Ellipsoid]]
|
|
if {[string length $bug_info] == 0} {
|
|
puts "OCC26077: Operation bfuse (bfuse Fusion Loft Ellipsoid) has been finished with OK status."
|
|
} else {
|
|
puts "ERROR: OCC26077 is reproduced. Operation bfuse (bfuse Fusion Loft Ellipsoid) has been finished with KO status."
|
|
}
|
|
|
|
set bug_info [string trim [bopargcheck Extrude_Ellipse]]
|
|
if {$bug_info != "Shape(s) seem(s) to be valid for BOP."} {
|
|
puts "ERROR: Problematic shape in OCC26077: Shape Extrude_Ellipse is not valid for BOP."
|
|
}
|
|
|
|
set bug_info [string trim [bopargcheck Fusion]]
|
|
if {$bug_info != "Shape(s) seem(s) to be valid for BOP."} {
|
|
puts "ERROR: Problematic shape in OCC26077: Shape Fusion is not valid for BOP."
|
|
}
|
|
|
|
set bug_info [string trim [bfuse Fusion002 Extrude_Ellipse Fusion]]
|
|
if {[string length $bug_info] == 0} {
|
|
puts "OCC26077: Operation bfuse (bfuse Fusion002 Extrude_Ellipse Fusion) has been finished with OK status."
|
|
} else {
|
|
puts "ERROR: OCC26077 is reproduced. Operation bfuse (bfuse Fusion002 Extrude_Ellipse Fusion) has been finished with KO status."
|
|
}
|