1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
nbv 323e88ada7 0030365: Modeling Algorithms - Create tool to compute deviation between any 2D-curve and some its segment
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
2021-11-26 18:49:17 +03:00

25 lines
665 B
Plaintext

set ExpectDeviation 0.36597801294402493
restore [locate_data_file OCC538.brep] r
smallview -2D-
pcurve r
trim cc r_3 1.5704826035188950 3.1409652070377900
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