Salome HOME
Issue #1834: Fix length of lines
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_ConstraintCoincidence.cpp
index 5f79a167e3160fa3afe02095e7c2c93c2556c0ed..8d2ab687e1ba5b2804787b0b610777e158369c55 100644 (file)
@@ -89,10 +89,10 @@ AttributePoint2DPtr SketchPlugin_ConstraintCoincidence::getPoint(const FeaturePt
 {
   AttributePoint2DPtr aPoint = ModelGeomAlgo_Point2D::getPointOfRefAttr(theFeature.get(),
                                                          SketchPlugin_Constraint::ENTITY_A(),
-                                                         SketchPlugin_Point::ID(), SketchPlugin_Point::COORD_ID());
+                                 SketchPlugin_Point::ID(), SketchPlugin_Point::COORD_ID());
   if (!aPoint.get())
     aPoint = ModelGeomAlgo_Point2D::getPointOfRefAttr(theFeature.get(),
                                                       SketchPlugin_Constraint::ENTITY_B(),
-                                                      SketchPlugin_Point::ID(), SketchPlugin_Point::COORD_ID());
+                                 SketchPlugin_Point::ID(), SketchPlugin_Point::COORD_ID());
   return aPoint;
 }