mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Adds two new overloaded 'ComputeDeviation()' function (approx & exact) to GeomLib_Tool class to calculates the parameter in the curve where the maximum deviation is obtained between the curve and the line segment connecting its points with the specified parameters Adds new '2ddeviation' DRAW command for 'ComputeDeviation()' functional testing
25 lines
657 B
Plaintext
25 lines
657 B
Plaintext
set ExpectDeviation 0.019156616993488952
|
|
|
|
restore [locate_data_file bug28211_cface7.brep] r
|
|
smallview -2D-
|
|
pcurve r
|
|
|
|
trim cc r_4 0 0.970848497621606
|
|
don cc
|
|
2dfit
|
|
|
|
set log_result1 [2ddeviation res cc -d 8]
|
|
regexp {Computed value is: +([-0-9.+eE]+)} $log_result1 full aDev1
|
|
checkreal FoundDeviation $aDev1 $ExpectDeviation 1.0e-9 0.0
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}_1.png
|
|
|
|
reverse cc
|
|
don cc
|
|
2dfit
|
|
|
|
set log_result2 [2ddeviation res cc -d 8]
|
|
regexp {Computed value is: +([-0-9.+eE]+)} $log_result2 full aDev2
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}_2.png
|
|
checkreal FoundDeviation $aDev2 $ExpectDeviation 1.0e-9 0.0
|
|
|