mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
The reason of this issue is in incorrectly interpreted the generic class "TheExtPC" (eliminated after the fix 0024773) as Extrema_ExtPC2d. Correct interpretation must be "Extrema_EPCOfExtPC2d" class. Now this problem has been fixed in the class Geom2dGcc_Circ2dTanCenGeo. New testgrid "lowalgos 2dgcc" has been created.
19 lines
479 B
Plaintext
19 lines
479 B
Plaintext
puts "========"
|
|
puts "0029694: Geom2dGcc_Circ2dTanCenGeo crash"
|
|
puts "========"
|
|
puts ""
|
|
|
|
point pp 1 1
|
|
2dbsplinecurve cc 1 2 0 2 1 2 -10 -5 1 10 -5 1
|
|
|
|
if { ![regexp {Solution of type C-P is} [cirtang result -p pp -c cc] ] } {
|
|
puts "Error: Cannot find any solution"
|
|
}
|
|
|
|
regexp "Center\\s*:\\s*(\[-0-9.+eE\]+)\\s*,\\s*(\[-0-9.+eE\]+)\\s*" [dump result_1] full pcx pcy
|
|
|
|
checkreal CenterX $pcx 1.0 1.0e-7 0
|
|
checkreal CenterX $pcy 1.0 1.0e-7 0
|
|
|
|
checkdump result_1 -name Radius -ref 6
|