1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
nbv 894dba72a3 0029694: Geom2dGcc_Circ2dTanCenGeo crash
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.
2018-06-14 14:03:06 +03:00

21 lines
901 B
Plaintext

puts "========"
puts "BUC60941"
puts "========"
puts ""
############################################################
## When try to use Geom2dGcc_Circ2d2TanRad with two curves it rise exception.
############################################################
circle curve_1 1.79356127430613 -11.9148900515605 12.0491272292007
set poles { { 0 0 1 } { -2.14533906935467 4.92056269221697 1 } { -0.537398638327716 10.0937503357781 1 } { 10.3564232507092 8.73929826869582 1 } { 16.6366922939454 3.11858911810943 1 } { 16.39 -0.262 1 } }
set knots { { 0 4 } { 8.6971225126475 1 } { 16.903955884905 1 } { 28.0087167558108 4 } }
eval 2dbsplinecurve curve_2 3 [ llength $knots ] [ join $knots ] [ join $poles ]
if [catch {cirtang result -c curve_1 -c curve_2 -r 2} catch_result] {
puts "Faulty BUC60941: function cirtang works wrongly"
} else {
puts "BUC60941 OK: function cirtang works properly"
}