Sketcher: fix typo in function name -> areCollinear

The same function exists in the Draft module but don't fix it there to avoid to possibly break add-ons
This commit is contained in:
wmayer
2024-03-26 07:58:11 +01:00
committed by wwmayer
parent bc7833cfab
commit cb0f92dbde
5 changed files with 8 additions and 8 deletions

View File

@@ -832,9 +832,9 @@ std::string SketcherGui::angleToDisplayFormat(double value, int digits)
}
bool SketcherGui::areColinear(const Base::Vector2d& p1,
const Base::Vector2d& p2,
const Base::Vector2d& p3)
bool SketcherGui::areCollinear(const Base::Vector2d& p1,
const Base::Vector2d& p2,
const Base::Vector2d& p3)
{
Base::Vector2d u = p2 - p1;
Base::Vector2d v = p3 - p2;