1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0026522: Exception while copying offset on C0 surface

Removed check for C0 surface while copying offset surface

General code melioration

Test case for issue CR26522

Ignoring C0 basis surface while reading offset surface (added)
This commit is contained in:
anv 2015-09-10 14:27:50 +03:00 committed by bugmaster
parent 21cd37b462
commit 9f4cd8eb1b
4 changed files with 485 additions and 658 deletions

File diff suppressed because it is too large Load Diff

View File

@ -113,11 +113,13 @@ public:
Standard_EXPORT void SetOffsetValue (const Standard_Real D);
//! Returns the offset value of this offset surface.
Standard_EXPORT Standard_Real Offset() const;
inline Standard_Real Offset() const
{ return offsetValue; }
//! Returns the basis surface of this offset surface.
//! Note: The basis surface can be an offset surface.
Standard_EXPORT Handle(Geom_Surface) BasisSurface() const;
inline const Handle(Geom_Surface) & BasisSurface() const
{ return basisSurf; }
//! Changes the orientation of this offset surface in the u
//! parametric direction. The bounds of the surface
@ -385,18 +387,11 @@ public:
Standard_EXPORT Standard_Boolean VOsculatingSurface (const Standard_Real U, const Standard_Real V, Standard_Boolean& IsOpposite, Handle(Geom_BSplineSurface)& VOsculSurf) const;
//! Returns continuity of the basis surface.
Standard_EXPORT GeomAbs_Shape GetBasisSurfContinuity() const;
inline GeomAbs_Shape GetBasisSurfContinuity() const
{ return myBasisSurfContinuity; }
DEFINE_STANDARD_RTTI(Geom_OffsetSurface,Geom_Surface)
protected:
private:
@ -429,14 +424,6 @@ private:
Standard_Real offsetValue;
Geom_OsculatingSurface myOscSurf;
GeomAbs_Shape myBasisSurfContinuity;
};
#endif // _Geom_OffsetSurface_HeaderFile

View File

@ -924,7 +924,7 @@ static Standard_IStream& operator>>(Standard_IStream& IS,
GeomTools::GetReal(IS, O);
Handle(Geom_Surface) BS;
GeomTools_SurfaceSet::ReadSurface(IS,BS);
S = new Geom_OffsetSurface(BS,O);
S = new Geom_OffsetSurface(BS,O,Standard_True);
return IS;
}

17
tests/bugs/moddata_3/bug26522 Executable file
View File

@ -0,0 +1,17 @@
puts "================"
puts "OCC26522"
puts "================"
puts ""
#######################################################
## Exception while copying offset on C0 surface
#######################################################
restore [locate_data_file bug26522_s.brep] s
set info [checkshape s]
if { [regexp "This shape seems to be valid" ${info}] == 1 } {
puts "OK: copying offset on C0 surface is correct"
} else {
puts "Error: copying offset on C0 surface is incorrect"
}