Salome HOME
Fix for selection by name with suffix
[modules/shaper.git] / src / GeomAPI / GeomAPI_Dir.h
index a3e49f90760d12dca01f62e7ffeb3443d81375b4..9b9d4f354facae598c966060af591be57614145b 100644 (file)
@@ -54,6 +54,12 @@ class GeomAPI_Dir : public GeomAPI_Interface
   /// calculates angle between two directions
   GEOMAPI_EXPORT 
   double angle(const std::shared_ptr<GeomAPI_Dir>& theArg) const;
+
+  /// \return true if the angle between this unit vector and theDir unit vector is equal to 0 or to Pi.
+  GEOMAPI_EXPORT 
+  bool isParallel(const std::shared_ptr<GeomAPI_Dir> theDir, const double theTolerance = 1.e-7) const;
+
+
 };
 
 #endif