2020-02-24 16:00:40 +00:00
<?xml version="1.0" encoding="UTF-8" ?>
<class name= "Rect2i" version= "4.0" >
<brief_description >
2D axis-aligned bounding box using integer coordinates.
</brief_description>
<description >
[Rect2i] consists of a position, a size, and several utility functions. It is typically used for fast overlap tests.
2020-09-21 12:27:50 +00:00
It uses integer coordinates. If you need floating-point coordinates, use [Rect2] instead.
2020-02-24 16:00:40 +00:00
</description>
<tutorials >
2020-08-05 12:43:40 +00:00
<link title= "Math tutorial index" > https://docs.godotengine.org/en/latest/tutorials/math/index.html</link>
2020-10-01 08:34:47 +00:00
<link title= "Vector math" > https://docs.godotengine.org/en/latest/tutorials/math/vector_math.html</link>
2020-02-24 16:00:40 +00:00
</tutorials>
<methods >
2020-11-10 13:16:20 +00:00
<method name= "Rect2i" qualifiers= "constructor" >
2020-11-09 16:46:03 +00:00
<return type= "Rect2i" >
</return>
<description >
Constructs a default-initialized [Rect2i] with default (zero) values of [member position] and [member size].
</description>
</method>
2020-11-10 13:16:20 +00:00
<method name= "Rect2i" qualifiers= "constructor" >
2020-11-09 16:46:03 +00:00
<return type= "Rect2i" >
</return>
<argument index= "0" name= "from" type= "Rect2i" >
</argument>
<description >
Constructs a [Rect2i] as a copy of the given [Rect2i].
</description>
</method>
2020-11-10 13:16:20 +00:00
<method name= "Rect2i" qualifiers= "constructor" >
2020-11-09 16:46:03 +00:00
<return type= "Rect2i" >
</return>
<argument index= "0" name= "from" type= "Rect2" >
</argument>
<description >
Constructs a new [Rect2i] from [Rect2]. The floating point coordinates will be truncated.
</description>
</method>
2020-11-10 13:16:20 +00:00
<method name= "Rect2i" qualifiers= "constructor" >
2020-02-24 16:00:40 +00:00
<return type= "Rect2i" >
</return>
2020-11-04 14:38:26 +00:00
<argument index= "0" name= "position" type= "Vector2i" >
2020-02-24 16:00:40 +00:00
</argument>
2020-11-04 14:38:26 +00:00
<argument index= "1" name= "size" type= "Vector2i" >
2020-02-24 16:00:40 +00:00
</argument>
<description >
Constructs a [Rect2i] by position and size.
</description>
</method>
2020-11-10 13:16:20 +00:00
<method name= "Rect2i" qualifiers= "constructor" >
2020-02-24 16:00:40 +00:00
<return type= "Rect2i" >
</return>
<argument index= "0" name= "x" type= "int" >
</argument>
<argument index= "1" name= "y" type= "int" >
</argument>
<argument index= "2" name= "width" type= "int" >
</argument>
<argument index= "3" name= "height" type= "int" >
</argument>
<description >
Constructs a [Rect2i] by x, y, width, and height.
</description>
</method>
2020-06-03 12:22:26 +00:00
<method name= "abs" >
<return type= "Rect2i" >
</return>
<description >
Returns a [Rect2i] with equivalent position and area, modified so that the top-left corner is the origin and [code]width[/code] and [code]height[/code] are positive.
</description>
</method>
<method name= "clip" >
<return type= "Rect2i" >
</return>
<argument index= "0" name= "b" type= "Rect2i" >
</argument>
<description >
Returns the intersection of this [Rect2i] and b.
</description>
</method>
<method name= "encloses" >
<return type= "bool" >
</return>
<argument index= "0" name= "b" type= "Rect2i" >
</argument>
<description >
Returns [code]true[/code] if this [Rect2i] completely encloses another one.
</description>
</method>
<method name= "expand" >
<return type= "Rect2i" >
</return>
<argument index= "0" name= "to" type= "Vector2i" >
</argument>
<description >
Returns this [Rect2i] expanded to include a given point.
</description>
</method>
<method name= "get_area" >
<return type= "int" >
</return>
<description >
Returns the area of the [Rect2i].
</description>
</method>
<method name= "grow" >
<return type= "Rect2i" >
</return>
<argument index= "0" name= "by" type= "int" >
</argument>
<description >
Returns a copy of the [Rect2i] grown a given amount of units towards all the sides.
</description>
</method>
<method name= "grow_individual" >
<return type= "Rect2i" >
</return>
<argument index= "0" name= "left" type= "int" >
</argument>
<argument index= "1" name= "top" type= "int" >
</argument>
<argument index= "2" name= "right" type= "int" >
</argument>
2020-11-04 14:38:26 +00:00
<argument index= "3" name= "bottom" type= "int" >
2020-06-03 12:22:26 +00:00
</argument>
<description >
Returns a copy of the [Rect2i] grown a given amount of units towards each direction individually.
</description>
</method>
<method name= "grow_margin" >
<return type= "Rect2i" >
</return>
<argument index= "0" name= "margin" type= "int" >
</argument>
<argument index= "1" name= "by" type= "int" >
</argument>
<description >
Returns a copy of the [Rect2i] grown a given amount of units towards the [enum Margin] direction.
</description>
</method>
<method name= "has_no_area" >
<return type= "bool" >
</return>
<description >
Returns [code]true[/code] if the [Rect2i] is flat or empty.
</description>
</method>
<method name= "has_point" >
<return type= "bool" >
</return>
<argument index= "0" name= "point" type= "Vector2i" >
</argument>
<description >
Returns [code]true[/code] if the [Rect2i] contains a point.
</description>
</method>
<method name= "intersects" >
<return type= "bool" >
</return>
<argument index= "0" name= "b" type= "Rect2i" >
</argument>
<description >
Returns [code]true[/code] if the [Rect2i] overlaps with [code]b[/code] (i.e. they have at least one point in common).
If [code]include_borders[/code] is [code]true[/code], they will also be considered overlapping if their borders touch, even without intersection.
</description>
</method>
<method name= "merge" >
<return type= "Rect2i" >
</return>
<argument index= "0" name= "b" type= "Rect2i" >
</argument>
<description >
Returns a larger [Rect2i] that contains this [Rect2i] and [code]b[/code].
</description>
</method>
2020-11-10 13:16:20 +00:00
<method name= "operator !=" qualifiers= "operator" >
<return type= "bool" >
</return>
<argument index= "0" name= "right" type= "Rect2i" >
</argument>
<description >
</description>
</method>
<method name= "operator ==" qualifiers= "operator" >
<return type= "bool" >
</return>
<argument index= "0" name= "right" type= "Rect2i" >
</argument>
<description >
</description>
</method>
2020-02-24 16:00:40 +00:00
</methods>
2020-06-03 12:22:26 +00:00
<members >
<member name= "end" type= "Vector2i" setter= "" getter= "" default= "Vector2i( 0, 0 )" >
2020-07-21 18:07:00 +00:00
Ending corner. This is calculated as [code]position + size[/code]. Setting this value will change the size.
2020-06-03 12:22:26 +00:00
</member>
<member name= "position" type= "Vector2i" setter= "" getter= "" default= "Vector2i( 0, 0 )" >
2020-07-21 18:07:00 +00:00
Beginning corner. Typically has values lower than [member end].
2020-06-03 12:22:26 +00:00
</member>
<member name= "size" type= "Vector2i" setter= "" getter= "" default= "Vector2i( 0, 0 )" >
2020-07-21 18:07:00 +00:00
Size from [member position] to [member end]. Typically all components are positive.
If the size is negative, you can use [method abs] to fix it.
2020-06-03 12:22:26 +00:00
</member>
</members>
2020-02-24 16:00:40 +00:00
<constants >
</constants>
</class>