love.graphics.drawq( image, quad, x, y, r, sx, sy, ox, oy )
Draw a Quad with the specified Image on screen.
Synopsis
love.graphics.drawq( image, quad, x, y, r, sx, sy, ox, oy )
Parameters
image |
Image |
An image to texture the quad with. |
quad |
Quad |
The quad to draw on screen. |
x |
number |
The position to draw the object (x-axis). |
y |
number |
The position to draw the object (y-axis). |
r = 0 |
number |
Orientation (radians). |
sx = 1 |
number |
Scale factor (x-axis). |
sy = sx |
number |
Scale factor (y-axis). |
ox = 0 |
number |
Origin offset (x-axis). |
oy = 0 |
number |
Origin offset (y-axis). |