mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
The main reason of the regression is that the Extrema algorithm finds the truth extrema point but cannot adjust it to the range of given circle. It is connected with the fact that Geom(2d)Adaptor_Curve::IsPeriodic() method returns false for given circle because adaptor contains a piece of the circle which is not closed. New algorithm of IsPeriodic() method will return the information about periodicity of the curve itself (independently of first and last parameter of adaptor). The documentation about Geom(2d)_TrimmedCurve and Geom_RectangularTrimmedSurface has been updated in frame of the information about IsPeriodic-methods.
16 lines
368 B
Plaintext
16 lines
368 B
Plaintext
puts "========"
|
|
puts "OCC28724"
|
|
puts "========"
|
|
puts ""
|
|
##############################################
|
|
# Extrema between circle and plane cannot be found
|
|
##############################################
|
|
|
|
restore [locate_data_file bug28724_cmpd.brep] co
|
|
explode co
|
|
|
|
distmini d co_1 co_2
|
|
|
|
if {[dval d_val] > 1.0e-7} {
|
|
puts "Error: Extrema cannot find minimal distance"
|
|
} |