mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0031430: Offset surfaces on C1 surfaces (with multiplicity equal to degree) may still throw exception
In constructor of Geom_RectangularTrimmedSurface, skip check if an offset surface has insufficient continuity. The reason is that this surface has already passed the check once created. So, here we must not apply more strict check than that first time.
This commit is contained in:
parent
67441d0ca3
commit
fb99177766
@ -118,7 +118,7 @@ const Standard_Boolean VSense)
|
|||||||
{
|
{
|
||||||
Handle(Geom_RectangularTrimmedSurface) S2 =
|
Handle(Geom_RectangularTrimmedSurface) S2 =
|
||||||
new Geom_RectangularTrimmedSurface( O->BasisSurface(),U1,U2, V1, V2, USense, VSense);
|
new Geom_RectangularTrimmedSurface( O->BasisSurface(),U1,U2, V1, V2, USense, VSense);
|
||||||
basisSurf = new Geom_OffsetSurface(S2, O->Offset());
|
basisSurf = new Geom_OffsetSurface(S2, O->Offset(), Standard_True);
|
||||||
}
|
}
|
||||||
|
|
||||||
SetTrim( U1, U2, V1, V2, USense, VSense);
|
SetTrim( U1, U2, V1, V2, USense, VSense);
|
||||||
@ -153,7 +153,7 @@ Geom_RectangularTrimmedSurface::Geom_RectangularTrimmedSurface (
|
|||||||
{
|
{
|
||||||
Handle(Geom_RectangularTrimmedSurface) S2 =
|
Handle(Geom_RectangularTrimmedSurface) S2 =
|
||||||
new Geom_RectangularTrimmedSurface( O->BasisSurface(),Param1,Param2, UTrim, Sense);
|
new Geom_RectangularTrimmedSurface( O->BasisSurface(),Param1,Param2, UTrim, Sense);
|
||||||
basisSurf = new Geom_OffsetSurface(S2, O->Offset());
|
basisSurf = new Geom_OffsetSurface(S2, O->Offset(), Standard_True);
|
||||||
}
|
}
|
||||||
|
|
||||||
SetTrim(Param1, Param2, UTrim, Sense);
|
SetTrim(Param1, Param2, UTrim, Sense);
|
||||||
|
10
tests/bugs/modalg_7/bug31430
Normal file
10
tests/bugs/modalg_7/bug31430
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
puts "========"
|
||||||
|
puts "0031430: Modeling Data - Offset surfaces on C1 surfaces (with multiplicity equal to degree) may still throw ex-ception"
|
||||||
|
puts "========"
|
||||||
|
puts ""
|
||||||
|
|
||||||
|
restore [locate_data_file bug31430.brep] s
|
||||||
|
fixshape r s
|
||||||
|
|
||||||
|
checkshape r
|
||||||
|
checknbshapes r -vertex 6 -edge 8 -wire 6 -face 4 -shell 1 -solid 1
|
Loading…
x
Reference in New Issue
Block a user