mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Two new functionalities have been added in BRepFilletAPI_MakeChamfer: - constant throat (the section of chamfer is isosceles triangle, its height is constant in all sections - this is the "throat" of the weld); - constant throat with penetration(the section of chamfer is right-angled triangle, the first of two surfaces (where is the top of the chamfer) is virtually moved inside the solid by offset operation, the apex of the section is on the intersection curve between moved surface and second surface, right angle is at the top of the chamfer, the length of the leg from apex to top is constant - this is the "throat" of the weld). - New abstract classes BlendFunc_GenChamfer and BlendFunc_GenChamfInv have been added; - Class BlendFunc_Chamfer is now descended from BlendFunc_GenChamfer, class BlendFunc_ChamfInv is now descended from BlendFunc_GenChamfInv. - New class BlendFunc_ConstThroat is descended from BlendFunc_GenChamfer, new class BlendFund_ConstThroatInv is descended from BlendFunc_GenChamfInv. - New class BlendFunc_ConstThroatWithPenetration is descended from BlendFunc_GenChamfer, new class BlendFund_ConstThroatWithPenetrationInv is descended from BlendFunc_GenChamfInv. - Class ChFi3d_ChBuilder has now mode of chamfer that can be ClassicChamfer, ConstThroatChamfer and ConstThroatWithPenetrationChamfer. - Two new DRAW Test Harness commands "chamf_throat" ant "chamf_throat_with_penetration" have been added for the second mode of ChBuilder. - The interface of DRAW Test Harness command "chamf" changed for symmetric case.
51 lines
1.3 KiB
Plaintext
51 lines
1.3 KiB
Plaintext
puts "TODO OCC27711 ALL: ERROR: OCC27711 is reproduced. Result of blend operation is WRONG."
|
|
puts "TODO OCC27711 ALL: Error: tolerance"
|
|
puts "TODO OCC27711 ALL: Faulty shapes in variables faulty_1 to faulty_"
|
|
puts "========"
|
|
puts "OCC27711"
|
|
puts "========"
|
|
puts ""
|
|
#####################################
|
|
# Blend-on-blend corrupts the shape
|
|
#####################################
|
|
|
|
smallview
|
|
|
|
restore [locate_data_file bug27711.brep] s
|
|
|
|
clear
|
|
display s
|
|
fit
|
|
xwd $imagedir/${casename}_step_0.png
|
|
|
|
explode s e
|
|
blend r1 s 0.5 s_7 0.5 s_12
|
|
set bug_info [string trim [checkshape r1]]
|
|
if {$bug_info != "This shape seems to be valid"} {
|
|
puts "ERROR: Problem of test case functionality. Should be additionally investigated."
|
|
}
|
|
clear
|
|
display r1
|
|
xwd $imagedir/${casename}_step_1.png
|
|
|
|
explode r1 e
|
|
blend r1 r1 0.5 r1_1 0.5 r1_8
|
|
set bug_info [string trim [checkshape r1]]
|
|
if {$bug_info != "This shape seems to be valid"} {
|
|
puts "ERROR: Problem of test case functionality. Should be additionally investigated."
|
|
}
|
|
clear
|
|
display r1
|
|
xwd $imagedir/${casename}_step_2.png
|
|
|
|
explode r1 e
|
|
blend result r1 0.35 r1_4 0.25 r1_15 0.2 r1_27
|
|
set bug_info [string trim [checkshape result]]
|
|
if {$bug_info != "This shape seems to be valid"} {
|
|
puts "ERROR: OCC27711 is reproduced. Result of blend operation is WRONG."
|
|
}
|
|
checkmaxtol result -min_tol 1.e-3
|
|
clear
|
|
display result
|
|
xwd $imagedir/${casename}_step_3.png
|