Salome HOME
Calculation of angle between two directions
[modules/shaper.git] / src / GeomAPI / GeomAPI_Dir2d.cpp
index e9131f992d6b2782d32d73d895eabcd6b83ab92e..abb954f294e260c54d789982eb52f361cf7a9bf5 100644 (file)
@@ -46,3 +46,7 @@ double GeomAPI_Dir2d::cross(const std::shared_ptr<GeomAPI_Dir2d>& theArg) const
   return MY_DIR->XY().Crossed(theArg->impl<gp_Dir2d>().XY());
 }
 
+double GeomAPI_Dir2d::angle(const std::shared_ptr<GeomAPI_Dir2d>& theArg) const
+{
+  return MY_DIR->Angle(theArg->impl<gp_Dir2d>());
+}