1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/modalg_7/bug27227
apv 340054e17a Update of tests database
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
2017-08-24 21:24:34 +03:00

69 lines
1.7 KiB
Plaintext

puts "============"
puts "OCC27227"
puts "============"
puts ""
#############################################################
# Intersection curve is not continued to the surface boundary
#############################################################
ptorus a0 100 20
tcopy a0 a1
trotate a1 0 0 0 1 0 0 90
explode a0 f
explode a1 f
smallview
donly a0_1 a1_1
bopcurves a0_1 a1_1 -2d
disp c_5
set log [dump c_5]
regexp {Degree +([-0-9.+eE]+), +([-0-9.+eE]+) Poles, +([-0-9.+eE]+)} ${log} full Degree Poles KnotsPoles
puts "Degree=${Degree}"
puts "Poles=${Poles}"
puts "KnotsPoles=${KnotsPoles}"
puts ""
set Pole 1
set exp_string " +${Pole} : +(\[-0-9.+eE\]+), +(\[-0-9.+eE\]+), +(\[-0-9.+eE\]+)"
regexp ${exp_string} ${log} full X_first Y_first Z_first
puts "Pole=${Pole}"
puts "X_first=${X_first}"
puts "Y_first=${Y_first}"
puts "Z_first=${Z_first}"
puts ""
set Pole ${Poles}
set exp_string " +${Pole} : +(\[-0-9.+eE\]+), +(\[-0-9.+eE\]+), +(\[-0-9.+eE\]+)"
regexp ${exp_string} ${log} full X_end Y_end Z_end
puts "Pole=${Pole}"
puts "X_end=${X_end}"
puts "Y_end=${Y_end}"
puts "Z_end=${Z_end}"
puts ""
set tol_abs [checkmaxtol a0]
set tol_rel 0.01
set expected_X_first 80.
checkreal "X_first" ${X_first} ${expected_X_first} ${tol_abs} ${tol_rel}
set expected_Y_first 0.
checkreal "Y_first" ${Y_first} ${expected_Y_first} ${tol_abs} ${tol_rel}
set expected_Z_first 0.
checkreal "Z_first" ${Z_first} ${expected_Z_first} ${tol_abs} ${tol_rel}
puts ""
set expected_X_end 120.
checkreal "X_end" ${X_end} ${expected_X_end} ${tol_abs} ${tol_rel}
set expected_Y_end 0.
checkreal "Y_end" ${Y_end} ${expected_Y_end} ${tol_abs} ${tol_rel}
set expected_Z_end 0.
checkreal "Z_end" ${Z_end} ${expected_Z_end} ${tol_abs} ${tol_rel}
puts ""