mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +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.
36 lines
1.1 KiB
Plaintext
Executable File
36 lines
1.1 KiB
Plaintext
Executable File
puts "TODO CR30351 Windows: Faulty OCC25199: Bad tolerance edge generated by blend algorithm"
|
|
|
|
puts "============"
|
|
puts "OCC25199"
|
|
puts "============"
|
|
puts ""
|
|
###############################################################################################
|
|
# Bad tolerance edge generated by blend algorithm
|
|
###############################################################################################
|
|
|
|
restore [locate_data_file OCC615.brep] a
|
|
checkshape a
|
|
explode a e
|
|
|
|
if [catch {blend result a 9 a_15 } catch_result] {
|
|
puts "Faulty OCC615: function BLEND works with exception"
|
|
} else {
|
|
puts "OCC615 OK: function CHAMF works OK"
|
|
}
|
|
|
|
explode result E
|
|
regexp {Tolerance +MAX=([-0-9.+eE]+)} [tolerance result_21] full MaxTol_1
|
|
|
|
puts "MaxTolerance = $MaxTol_1"
|
|
set MaxTol 5.e-7
|
|
|
|
if { $MaxTol_1 > $MaxTol } {
|
|
puts "Faulty OCC25199: Bad tolerance edge generated by blend algorithm"
|
|
} else {
|
|
puts "OCC25199 OK: Good tolerance edge generated by blend algorithm"
|
|
}
|
|
|
|
checkprops result -s 197055.
|
|
checkshape result
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|