1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0023944: Typo in ShapeCustom_RestrictionParameters leading to wrong approximation results

Add test case for this fix
This commit is contained in:
Roman Lygin 2013-05-31 16:58:07 +04:00
parent 20b1ae2c3c
commit 416d012709
2 changed files with 29 additions and 2 deletions

View File

@ -28,8 +28,8 @@
ShapeCustom_RestrictionParameters::ShapeCustom_RestrictionParameters()
{
myGMaxSeg = 15;
myGMaxDegree = 10000;
myGMaxSeg = 10000;
myGMaxDegree = 15;
myConvPlane = Standard_False;
//myConvElementarySurf = Standard_False;

27
tests/bugs/heal/bug23944 Executable file
View File

@ -0,0 +1,27 @@
puts "============"
puts "OCC23944"
puts "============"
puts ""
###################################################
## Typo in ShapeCustom_RestrictionParameters leading to wrong approximation results
###################################################
set BugNumber OCC23944
restore [locate_data_file bug23944_s.brep] s
mkface f s
set info [bsplres result f 1e-4 1e-9 15 100 C1 C2 0 1]
# Resume
puts ""
if { [regexp {Debug mode} [dversion]] } {
if { [regexp {Surface is aproximated with continuity 0} $info] } {
puts "OK ${BugNumber}"
} else {
puts "Faulty ${BugNumber}"
}
} else {
puts "Test for debug mode only"
}