mirror of
https://github.com/love2d/love.git
synced 2026-08-16 08:11:02 +02:00
Fixed the mipmaps flag in love.graphics.newImage; cleaned up a bit of vector code in love.math.isConvex.
This commit is contained in:
@@ -39,6 +39,10 @@ struct Vector2
|
||||
: x(x), y(y)
|
||||
{}
|
||||
|
||||
Vector2(const Vector2 &v)
|
||||
: x(v.x), y(v.y)
|
||||
{}
|
||||
|
||||
/**
|
||||
* Gets the length of the Vector.
|
||||
**/
|
||||
|
||||
Reference in New Issue
Block a user