mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Test for 0027049: Make non-destructive mode be defined by default in Boolean operations Test for 0027052: Test boolean gdml_private ZI5 failure Test for 0027069: IGES parser does not recognize comments in Parameters section Test for 0027090: Point is classified IN solid but actually it is OUT Test for 0027170: Reading STEP files produces invalid shapes Test for 0027186: IGES - reconsider creation of Undefined entity in case of failure Test for 0027214: Duplicate of test cases Test for 0027224: Incorrect result of boolean operation in boolean bcut_complex Q1 test case Test for 0027227: Intersection curve is not continued to the surface boundary Test for 0027246: ShapeFix_Shape destroys shape Test for 0027251: Shape becomes invalid when exported to STEP and imported back Test for 0027316: exception when XAddShape Test for 0027378: BRepLib_MakeFace produces invalid faces on periodic surfaces in case the given parametrization does not match the default Test for 0027390: Box and Ellipsoid shape boolean cut and common introduce invalid result. Test for 0028119: Blend fails on fused identical but shifted tori Test for 0028144: Step reader - regression in comparison of version OCCT654 Test for 0028151: Sewing faces results in a shell with very big tolerance Test for 0027160: Weird results of the pipe algorithm Test for 0027623: Cannot find intersection line between two trimmed planar surfaces Test for 0027683: Inaccurate result by bopcut Test for 0027687: Section between shells of hull and deck is not closed Test for 0027711: Blend-on-blend corrupts the shape Test for 0027784: Thickness fails on cylinder with draft Test for 0027908: Exception during offset computation Test for 0027909: Exception during offset computation Test for 0027910: Sharing between edges was lost after offset operation Test for 0027911: Exception during offset computation Test for 0027912: Exception during offset computation Test for 0027928: BOP common produces empty compound Test for 0027948: Cut produces unexcpected shape Test for 0027950: Result of intersection algorithm depends too much on surface trim bounds Test for 0027701: Crash when export empty solid to STEP Test for 0027722: STEP error for Ellipse revol shape
56 lines
2.0 KiB
Plaintext
Executable File
56 lines
2.0 KiB
Plaintext
Executable File
puts "TODO OCC27378 ALL: Error: BRepLib_MakeFace produces invalid faces on periodic surfaces"
|
|
|
|
puts "========"
|
|
puts "OCC27378"
|
|
puts "========"
|
|
puts ""
|
|
############################################################################################################################
|
|
# BRepLib_MakeFace produces invalid faces on periodic surfaces in case the given parametrization does not match the default
|
|
############################################################################################################################
|
|
|
|
cylinder cyl 10
|
|
mkface fcyl cyl pi 3*pi -10 10
|
|
checkshape fcyl
|
|
set Log [bopcheck fcyl]
|
|
if {[regexp "This shape seems to be OK" ${Log}] != 1} {
|
|
puts "Error: BRepLib_MakeFace produces invalid faces on periodic surfaces; fcyl"
|
|
}
|
|
checkview -display fcyl -2d -path ${imagedir}/${test_image}_fcyl.png
|
|
|
|
sphere sph 10
|
|
trimu spht sph pi 3*pi
|
|
mkface fsph spht
|
|
checkshape fsph
|
|
set Log [bopcheck fsph]
|
|
if {[regexp "This shape seems to be OK" ${Log}] != 1} {
|
|
puts "Error: BRepLib_MakeFace produces invalid faces on periodic surfaces; fsph"
|
|
}
|
|
checkview -display fsph -2d -path ${imagedir}/${test_image}_fsph.png
|
|
|
|
cone con 30 0
|
|
mkface fcon con pi 3*pi 0 20
|
|
checkshape fcon
|
|
set Log [bopcheck fcon]
|
|
if {[regexp "This shape seems to be OK" ${Log}] != 1} {
|
|
puts "Error: BRepLib_MakeFace produces invalid faces on periodic surfaces; fcon"
|
|
}
|
|
checkview -display fcon -2d -path ${imagedir}/${test_image}_fcon.png
|
|
|
|
torus tor 20 5
|
|
|
|
mkface ftor1 tor pi 3*pi 0 2*pi
|
|
checkshape ftor1
|
|
set Log [bopcheck ftor1]
|
|
if {[regexp "This shape seems to be OK" ${Log}] != 1} {
|
|
puts "Error: BRepLib_MakeFace produces invalid faces on periodic surfaces; ftor1"
|
|
}
|
|
checkview -display ftor1 -2d -path ${imagedir}/${test_image}_ftor1.png
|
|
|
|
mkface ftor2 tor 0 2*pi pi 3*pi
|
|
checkshape ftor2
|
|
set Log [bopcheck ftor2]
|
|
if {[regexp "This shape seems to be OK" ${Log}] != 1} {
|
|
puts "Error: BRepLib_MakeFace produces invalid faces on periodic surfaces; ftor2"
|
|
}
|
|
checkview -display ftor2 -2d -path ${imagedir}/${test_image}_ftor2.png
|