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.
27 lines
589 B
Plaintext
Executable File
27 lines
589 B
Plaintext
Executable File
puts "============"
|
|
puts "OCC23944"
|
|
puts "============"
|
|
puts ""
|
|
###################################################
|
|
## Typo in ShapeCustom_RestrictionParameters leading to wrong approximation results
|
|
###################################################
|
|
|
|
set BugNumber OCC23944
|
|
|
|
restore [locate_data_file bug23944_s.draw] s
|
|
|
|
decho off
|
|
mkface f s
|
|
bsplres result f 1e-4 1e-9 15 100 C1 C2 0 1
|
|
mksurface rsurf result
|
|
set info [getsurfcontinuity rsurf]
|
|
decho on
|
|
|
|
# Resume
|
|
puts ""
|
|
if { [regexp {rsurf has C0 continuity.} $info] } {
|
|
puts "OK ${BugNumber}"
|
|
} else {
|
|
puts "Faulty ${BugNumber}"
|
|
}
|