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

0028065: [Regression to 7.0] The method HLRAppli_ReflectLines::GetResult must be const

This commit is contained in:
msv 2016-11-07 20:05:58 +03:00 committed by apn
parent a1565817f1
commit e7b01db7c4
2 changed files with 4 additions and 4 deletions

View File

@ -92,7 +92,7 @@ void HLRAppli_ReflectLines::Perform()
TopoDS_Shape HLRAppli_ReflectLines::GetCompoundOf3dEdges(const HLRBRep_TypeOfResultingEdge type,
const Standard_Boolean visible,
const Standard_Boolean In3d)
const Standard_Boolean In3d) const
{
HLRBRep_HLRToShape aHLRToShape( myHLRAlgo );
@ -108,7 +108,7 @@ TopoDS_Shape HLRAppli_ReflectLines::GetCompoundOf3dEdges(const HLRBRep_TypeOfRes
//purpose :
//=======================================================================
TopoDS_Shape HLRAppli_ReflectLines::GetResult()
TopoDS_Shape HLRAppli_ReflectLines::GetResult() const
{
return GetCompoundOf3dEdges(HLRBRep_OutLine, Standard_True, Standard_True);
}

View File

@ -51,14 +51,14 @@ public:
//! returns resulting compound of reflect lines
//! represented by edges in 3d
Standard_EXPORT TopoDS_Shape GetResult();
Standard_EXPORT TopoDS_Shape GetResult() const;
//! returns resulting compound of lines
//! of specified type and visibility
//! represented by edges in 3d or 2d
Standard_EXPORT TopoDS_Shape GetCompoundOf3dEdges(const HLRBRep_TypeOfResultingEdge type,
const Standard_Boolean visible,
const Standard_Boolean In3d);
const Standard_Boolean In3d) const;