mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Correct the behavior of the command 2dapprox for the case of points input in the command line. Restore the work of the command 2dinterpole (implemented in the same method as 2dapprox). Add test cases. Correct generation of snapshots for the tests lowalgos/2dinter/*.
23 lines
542 B
Plaintext
23 lines
542 B
Plaintext
puts "============"
|
|
puts "CR24800"
|
|
puts "==========="
|
|
puts ""
|
|
###############################################################################
|
|
# Point of intersection was not found for 2d offset curve.
|
|
###############################################################################
|
|
|
|
restore [locate_data_file bug24800_curve2.draw] c2
|
|
|
|
set inter1 [2dintersect c2]
|
|
|
|
set int1 [regexp {Intersection point 1} ${inter1}]
|
|
|
|
if { ${int1} == 0 } {
|
|
puts "Error : Intersection is not found"
|
|
}
|
|
|
|
smallview -2D-
|
|
2dfit
|
|
|
|
xwd ${imagedir}/${test_image}.png
|