Salome HOME
typo
authoreap <eap@opencascade.com>
Fri, 28 Dec 2012 15:53:01 +0000 (15:53 +0000)
committereap <eap@opencascade.com>
Fri, 28 Dec 2012 15:53:01 +0000 (15:53 +0000)
src/StdMeshers/StdMeshers_ProjectionUtils.hxx

index 1d22b54b7e4f5d5acb1d46011676a20813b6a8d7..097b0ac114a90b80f69cbcd8dd3f6cffa2bdf2ea 100644 (file)
@@ -53,13 +53,13 @@ struct StdMeshers_ShapeShapeBiDirectionMap
 {
   TopTools_DataMapOfShapeShape _map1to2, _map2to1;
 
-  // convension: s1 - target, s2 - source
+  // convention: s1 - target, s2 - source
   bool Bind( const TopoDS_Shape& s1, const TopoDS_Shape& s2 )
   { _map1to2.Bind( s1, s2 ); return _map2to1.Bind( s2, s1 ); }
   bool IsBound( const TopoDS_Shape& s, const bool isShape2=false ) const 
   { return (isShape2 ? _map2to1 : _map1to2).IsBound( s ); }
   bool IsEmpty() const { return _map1to2.IsEmpty(); }
-  int Extent() const { return _map1to2.Extent(); }
+  int  Extent()  const { return _map1to2.Extent(); }
   void Clear() { _map1to2.Clear(); _map2to1.Clear(); }
   const TopoDS_Shape& operator()( const TopoDS_Shape& s, const bool isShape2=false ) const
   { // if we get a Standard_NoSuchObject here, it means that the calling code