Salome HOME
Issue #1860: fix end lines with spaces
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_FaceBuilder.cpp
index e0aff60b9769d6c2d104c3a8e0b93a38acc38455..0dce2f9f99cfd1010f8ee45e5d0803e29ef94f6b 100644 (file)
@@ -78,7 +78,7 @@ std::shared_ptr<GeomAPI_Face> GeomAlgoAPI_FaceBuilder::planarFace(
   gp_Pln aPlane(aA, aB, aC, aD);
 
   // half of the size in each direction from the center
-  BRepBuilderAPI_MakeFace aFaceBuilder(aPlane, theX, theX + theWidth, 
+  BRepBuilderAPI_MakeFace aFaceBuilder(aPlane, theX, theX + theWidth,
                                        theY, theY + theHeight);
   std::shared_ptr<GeomAPI_Face> aRes(new GeomAPI_Face());
   aRes->setImpl(new TopoDS_Face(aFaceBuilder.Face()));