Views
love.graphics.shear
Available since LÖVE 0.8.0 |
This function is not supported in earlier versions. |
Shears the coordinate system.
Function
Synopsis
love.graphics.shear( kx, ky )
Arguments
Returns
Nothing.
Examples
Squish a rectangle
x = 100
y = 100
width = 100
height = 50
function love.draw()
love.graphics.translate(x, y)
local t = love.timer.getTime()
love.graphics.shear(math.cos(t), math.cos(t * 1.3))
love.graphics.rectangle('fill', 0, 0, width, height)
end
y = 100
width = 100
height = 50
function love.draw()
love.graphics.translate(x, y)
local t = love.timer.getTime()
love.graphics.shear(math.cos(t), math.cos(t * 1.3))
love.graphics.rectangle('fill', 0, 0, width, height)
end
See Also
Other Languages
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info