mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
distmini of two edges returns two solution points instead one. Second unneeded solution point is the same as first. The problem was in fact that second edge has continuity C0. In this case additional extremas analysis performed in special procedure PERFORM_C0 And second point found in this procedure. Folowing code of BRepExtrema_DistanceSS::Perform (variant for Edge/Edge) we should this additional solution extremas set to be object of test TRI_SOLUTION before pushing into main list of solution. This solves the problem. Corresponding test and compound with edges has been created. Additionally, in the function PERFORM_C0 an obvious error has fixed.
26 lines
711 B
Plaintext
26 lines
711 B
Plaintext
puts "========"
|
|
puts "OCC32934"
|
|
puts "========"
|
|
puts ""
|
|
###############################################################################################
|
|
# BRepExtrema_DistShapeShape BRepExtrema_DistShapeShape returns two solutions instead of one.
|
|
###############################################################################################
|
|
|
|
pload ALL
|
|
restore [locate_data_file bug32934.brep] edges
|
|
explode edges E
|
|
|
|
distmini di edges_1 edges_2
|
|
if { ([isdraw di2]) } {
|
|
puts "Error : result of distmini is wrong"
|
|
} else {
|
|
checknbshapes di -vertex 1 -edge 0
|
|
}
|
|
|
|
distmini dii edges_2 edges_1
|
|
if { ([isdraw dii2]) } {
|
|
puts "Error : result of distmini is wrong"
|
|
} else {
|
|
checknbshapes dii -vertex 1 -edge 0
|
|
}
|