Difference between revisions of "love.physics.newRectangleShape"
(Noted that rectangle's are centered to x,y) |
(Tag: Undo) |
||
(9 intermediate revisions by 5 users not shown) | |||
Line 1: | Line 1: | ||
− | Shorthand for creating | + | Shorthand for creating rectangular [[PolygonShape]]s. |
+ | |||
+ | By default, the local origin is located at the '''center''' of the rectangle as opposed to the top left for graphics. | ||
== Function == | == Function == | ||
Line 18: | Line 20: | ||
shape = love.physics.newRectangleShape( x, y, width, height, angle ) | shape = love.physics.newRectangleShape( x, y, width, height, angle ) | ||
</source> | </source> | ||
+ | |||
=== Arguments === | === Arguments === | ||
{{param|number|x|The offset along the x-axis.}} | {{param|number|x|The offset along the x-axis.}} | ||
Line 48: | Line 51: | ||
* [[Constructs::Shape]] | * [[Constructs::Shape]] | ||
[[Category:Functions]] | [[Category:Functions]] | ||
− | {{#set:Description=Shorthand for creating | + | {{#set:Description=Shorthand for creating rectangular [[PolygonShape]]s.}} |
{{#set:Since=000}} | {{#set:Since=000}} | ||
== Other Languages == | == Other Languages == | ||
{{i18n|love.physics.newRectangleShape}} | {{i18n|love.physics.newRectangleShape}} |
Latest revision as of 20:09, 5 July 2024
Shorthand for creating rectangular PolygonShapes.
By default, the local origin is located at the center of the rectangle as opposed to the top left for graphics.
Contents
Function
Available since LÖVE 0.8.0 |
These variants are not supported in earlier versions. |
Synopsis
shape = love.physics.newRectangleShape( width, height )
Arguments
Returns
PolygonShape shape
- A new PolygonShape.
Function
Synopsis
shape = love.physics.newRectangleShape( x, y, width, height, angle )
Arguments
number x
- The offset along the x-axis.
number y
- The offset along the y-axis.
number width
- The width of the rectangle.
number height
- The height of the rectangle.
number angle (0)
- The initial angle of the rectangle.
Returns
PolygonShape shape
- A new PolygonShape.
Function
Removed in LÖVE 0.8.0 |
This variant is not supported in that and later versions. |
Synopsis
s = love.physics.newRectangleShape( body, x, y, width, height, angle )
Arguments
Body body
- The Body to attach the Shape to.
number x
- The offset along the x-axis.
number y
- The offset along the y-axis.
number width
- The width of the rectangle.
number height
- The height of the rectangle.
number angle (0)
- The initial angle of the rectangle.
Returns
PolygonShape s
- A new PolygonShape.
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