forked from organicmaps/organicmaps-tmp
Fix CrossProduct().
This commit is contained in:
parent
1fa977fc6f
commit
8614cc9087
1 changed files with 1 additions and 1 deletions
|
@ -156,7 +156,7 @@ namespace m2
|
|||
template <typename T>
|
||||
T const CrossProduct(Point<T> const & a, Point<T> const & b)
|
||||
{
|
||||
return a.y * b.x - a.x * b.y;
|
||||
return a.x * b.y - a.y * b.x;
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
|
|
Loading…
Add table
Reference in a new issue