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
82 lines
2.4 KiB
Plaintext
82 lines
2.4 KiB
Plaintext
puts "========"
|
|
puts "OCC27090"
|
|
puts "========"
|
|
puts ""
|
|
#######################################################
|
|
# Point is classified IN solid but actually it is OUT
|
|
#######################################################
|
|
|
|
smallview
|
|
|
|
# planar face
|
|
plane pln_f1 0 -875 -1.4432899320127035e-014 0 1 1.1102230246251565e-016
|
|
erase pln_f1
|
|
mkface f1 pln_f1 -1000000 1000000 -1000000 1000000
|
|
|
|
# planar face
|
|
plane pln_f2 1084.71007164 -980 -2128.6796868400002 1.110223024625157e-016 -1 1.1102230246251563e-016
|
|
erase pln_f2
|
|
mkface f2 pln_f2 -1000000 1000000 -1000000 1000000
|
|
|
|
# planar face
|
|
plane pln_f3 -308.43155740558768 -800 -2407.1041518310276 0.80901699437494767 9.2444637330587307e-033 -0.5877852522924728
|
|
erase pln_f3
|
|
mkface f3 pln_f3 -1000000 1000000 -1000000 1000000
|
|
|
|
# planar face
|
|
plane pln_f4 -381.4805392043022 -800 -2409.117597419774 -0.15639998811787861 -1.5422229525403152e-032 -0.98769380058635958
|
|
erase pln_f4
|
|
mkface f4 pln_f4 -1000000 1000000 -1000000 1000000
|
|
|
|
# cylindrical face
|
|
cylinder cyl_f5 0 0 -1.0103029524088925e-013 0 1 1.1102230246251565e-016 2440
|
|
erase cyl_f5
|
|
mkface f5 cyl_f5 0 6.2831853071795862 -1000000 1000000
|
|
|
|
# planar face
|
|
plane pln_f6 -309.45754782652125 -800 -2369.8806246344966 0.98769380058635958 -4.4408920985006262e-016 -0.15639998811787881
|
|
erase pln_f6
|
|
mkface f6 pln_f6 -1000000 1000000 -1000000 1000000
|
|
|
|
# planar face
|
|
plane pln_f7 -330.11602392243287 -800 -2299.7847255135234 -0.58778525229247269 -1.6653345369377348e-016 -0.80901699437494767
|
|
erase pln_f7
|
|
mkface f7 pln_f7 -1000000 1000000 -1000000 1000000
|
|
|
|
# cylindrical face
|
|
cylinder cyl_f8 0 0 -2.0206059048177849e-013 0 -1 1.1102230246251565e-016 2340
|
|
erase cyl_f8
|
|
mkface f8 cyl_f8 0 6.2831853071795862 -1000000 1000000
|
|
|
|
# make volume operation
|
|
mkvolume v f1 f2 f3 f4 f5 f6 f7 f8
|
|
|
|
donly v
|
|
|
|
explode v
|
|
|
|
if {[llength [explode v_6]] > 1} {
|
|
# We expect that v_6 is invalid solid containing 2 shells,
|
|
# and use the first shell to create a new valid solid.
|
|
|
|
shape solid so
|
|
add v_6_1 solid
|
|
point p -131.81074615766306 -874.99999999999977 -2443.8619433375443
|
|
|
|
donly solid p
|
|
|
|
set output [bclassify solid p]
|
|
|
|
regexp {The point is ([^ ]*)} $output dummy state
|
|
if {$state != "OUT"} {
|
|
puts "Error: point is classified as $state, but must be OUT"
|
|
} else {
|
|
puts "Info: point is classified OUT, it is OK"
|
|
}
|
|
} else {
|
|
puts "Info: test is not actual for the current version"
|
|
}
|
|
|
|
fit
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|