love.graphics.draw( sprite, x, y, angle )
Usage
love.graphics.draw( sprite, x, y, angle )
Arguments
xThe position on the x-axis.
yThe position on the y-axis.
angleThe angle of rotation (in degrees).
Returns
Nothing
Examples
Example 1: Draw a rotated image.
image = love.graphics.newImage("image.png")
love.graphics.draw(image, 50, 50, 20)