]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/GeomAPI/GeomAPI_Edge.h
Salome HOME
Issue #1860: fix end lines with spaces
[modules/shaper.git] / src / GeomAPI / GeomAPI_Edge.h
index afe8243eaf3b5edee49122aeb07ad38d5f78d4ad..83eaad634607b56497c191ea5914512ce18ce2f9 100644 (file)
@@ -23,47 +23,47 @@ class GeomAPI_Edge : public GeomAPI_Shape
 {
 public:
    /// Makes an undefined Edge (no geometry).
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
    GeomAPI_Edge();
 
    /// Creation of edge by the edge-shape
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
    GeomAPI_Edge(const std::shared_ptr<GeomAPI_Shape>& theShape);
 
   /// Verifies that the edge is a line
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   bool isLine() const;
 
   /// Verifies that the edge is a circle
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   bool isCircle() const;
 
   /// Verifies that the edge is an arc of circle
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   bool isArc() const;
 
-  /// Returns the first vertex coordinates of the edge 
-  GEOMAPI_EXPORT 
+  /// Returns the first vertex coordinates of the edge
+  GEOMAPI_EXPORT
   std::shared_ptr<GeomAPI_Pnt> firstPoint();
 
-  /// Returns the Last vertex coordinates of the edge 
-  GEOMAPI_EXPORT 
+  /// Returns the Last vertex coordinates of the edge
+  GEOMAPI_EXPORT
   std::shared_ptr<GeomAPI_Pnt> lastPoint();
 
   /// Returns a circle if edge is based on the circle curve
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   std::shared_ptr<GeomAPI_Circ> circle();
 
   /// Returns a line if edge is based on the linear curve
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   std::shared_ptr<GeomAPI_Lin> line();
 
   /// Returns true if the current edge is geometrically equal to the given edge
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   bool isEqual(const std::shared_ptr<GeomAPI_Shape> theEdge) const;
 
   /// Returns range of parameter on the curve
-  GEOMAPI_EXPORT 
+  GEOMAPI_EXPORT
   void getRange(double& theFirst, double& theLast) const;
 
   /// Returns true, if the edge is fully placed in the specified plane