Transform:transformPoint
Available since LÖVE 11.0
This function is not supported in earlier versions.
Applies the Transform object's transformation to the given 2D position.
This effectively converts the given position from global coordinates into the local coordinate space of the Transform.
Function
Synopsis
localX, localY = Transform:transformPoint( globalX, globalY )
Arguments
number globalX
- The x component of the position in global coordinates.
number globalY
- The y component of the position in global coordinates.
Returns
number localX
- The x component of the position with the transform applied.
number localY
- The y component of the position with the transform applied.
See Also
© 2006–2020 LÖVE Development Team
Licensed under the GNU Free Documentation License, Version 1.3.
https://love2d.org/wiki/Transform:transformPoint