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
23 lines
594 B
Plaintext
23 lines
594 B
Plaintext
set ExpectDeviation 199.9999995
|
|
|
|
circle cc 0 0 100
|
|
trim cc cc 0.0001 2*pi-0.0001
|
|
|
|
smallview -2D-
|
|
don cc
|
|
2dfit
|
|
|
|
set log_result1 [2ddeviation res cc]
|
|
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]
|
|
regexp {Computed value is: +([-0-9.+eE]+)} $log_result2 full aDev2
|
|
checkreal FoundDeviation $aDev2 $ExpectDeviation 1.0e-9 0.0
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}_2.png
|