From: eap Date: Fri, 22 Nov 2013 13:17:22 +0000 (+0000) Subject: - static bool isStraight( const TopoDS_Edge & E, const bool degenResult=false ); X-Git-Tag: V7_3_0a1~18 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=d5b3009987da618d852714915ce248e648a35438;p=modules%2Fsmesh.git - static bool isStraight( const TopoDS_Edge & E, const bool degenResult=false ); + static bool IsStraight( const TopoDS_Edge & E, const bool degenResult=false ); --- diff --git a/src/SMESH/SMESH_Algo.cxx b/src/SMESH/SMESH_Algo.cxx index 518c0d668..19a1e4b09 100644 --- a/src/SMESH/SMESH_Algo.cxx +++ b/src/SMESH/SMESH_Algo.cxx @@ -178,8 +178,6 @@ const SMESH_Algo::Features& SMESH_Algo::GetFeatures( const std::string& algoType SMESH_Algo::SMESH_Algo (int hypId, int studyId, SMESH_Gen * gen) : SMESH_Hypothesis(hypId, studyId, gen) { - //gen->_mapAlgo[hypId] = this; - _onlyUnaryInput = _requireDiscreteBoundary = _requireShape = true; _quadraticMesh = _supportSubmeshes = false; _error = COMPERR_OK; @@ -208,28 +206,24 @@ SMESH_0D_Algo::SMESH_0D_Algo(int hypId, int studyId, SMESH_Gen* gen) { _shapeType = (1 << TopAbs_VERTEX); _type = ALGO_0D; - //gen->_map0D_Algo[hypId] = this; } SMESH_1D_Algo::SMESH_1D_Algo(int hypId, int studyId, SMESH_Gen* gen) : SMESH_Algo(hypId, studyId, gen) { _shapeType = (1 << TopAbs_EDGE); _type = ALGO_1D; - //gen->_map1D_Algo[hypId] = this; } SMESH_2D_Algo::SMESH_2D_Algo(int hypId, int studyId, SMESH_Gen* gen) : SMESH_Algo(hypId, studyId, gen) { _shapeType = (1 << TopAbs_FACE); _type = ALGO_2D; - //gen->_map2D_Algo[hypId] = this; } SMESH_3D_Algo::SMESH_3D_Algo(int hypId, int studyId, SMESH_Gen* gen) : SMESH_Algo(hypId, studyId, gen) { _shapeType = (1 << TopAbs_SOLID); _type = ALGO_3D; - //gen->_map3D_Algo[hypId] = this; } //============================================================================= @@ -535,7 +529,7 @@ GeomAbs_Shape SMESH_Algo::Continuity(TopoDS_Edge E1, */ //================================================================================ -bool SMESH_Algo::isStraight( const TopoDS_Edge & E, +bool SMESH_Algo::IsStraight( const TopoDS_Edge & E, const bool degenResult) { { diff --git a/src/SMESH/SMESH_Algo.hxx b/src/SMESH/SMESH_Algo.hxx index 0208934b8..f2c166605 100644 --- a/src/SMESH/SMESH_Algo.hxx +++ b/src/SMESH/SMESH_Algo.hxx @@ -360,7 +360,7 @@ public: /*! * \brief Return true if an edge can be considered straight */ - static bool isStraight( const TopoDS_Edge & E, const bool degenResult=false ); + static bool IsStraight( const TopoDS_Edge & E, const bool degenResult=false ); /*! * \brief Return true if an edge has no 3D curve */