mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
1. DRAW-commands for curve/surface continuity returning were changed. 2. Output of "distmini" DRAW-command is amended. 3. Function MinMax() was moved from Standard_Real to IntPatch_ImpImpIntersection_4.gxx. 4. Incorrect computing of nbcurveC1 in Geom2dConvert::C0BSplineToC1BSplineCurve(...) function was liquidated. Test cases were changed.
28 lines
693 B
Plaintext
Executable File
28 lines
693 B
Plaintext
Executable File
puts "========================"
|
|
puts "OCC11081"
|
|
puts "========================"
|
|
puts ""
|
|
#######################################################################
|
|
# BRepExtrema_DistShapeShape misses one of two solutions
|
|
#######################################################################
|
|
|
|
set BugNumber OCC11081
|
|
|
|
set RefResult "\"distmini\" command returns:\ndd_val dd dd2 \nOutput is complete."
|
|
|
|
# infinite line is used
|
|
|
|
line ll 6834.93 -4100 500 0 0 1
|
|
mkedge ee ll
|
|
restore [locate_data_file OCC11081.brep] section4100
|
|
set res_list [distmini dd ee section4100]
|
|
|
|
# Resume
|
|
puts ""
|
|
if { [regexp $RefResult $res_list] != 1 } {
|
|
puts "Faulty ${BugNumber}"
|
|
} else {
|
|
puts "OK ${BugNumber}"
|
|
}
|
|
|