2017-09-12 20:42:36 +00:00
<?xml version="1.0" encoding="UTF-8" ?>
2021-11-05 14:02:42 +00:00
<class name= "BitMap" inherits= "Resource" version= "3.5" >
2017-09-12 20:42:36 +00:00
<brief_description >
Boolean matrix.
</brief_description>
<description >
A two-dimensional array of boolean values, can be used to efficiently store a binary matrix (every matrix element takes only one bit) and query the values using natural cartesian coordinates.
</description>
<tutorials >
</tutorials>
<methods >
<method name= "create" >
2021-07-30 13:28:05 +00:00
<return type= "void" />
<argument index= "0" name= "size" type= "Vector2" />
2017-09-12 20:42:36 +00:00
<description >
2019-04-17 11:42:56 +00:00
Creates a bitmap with the specified size, filled with [code]false[/code].
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "create_from_image_alpha" >
2021-07-30 13:28:05 +00:00
<return type= "void" />
<argument index= "0" name= "image" type= "Image" />
<argument index= "1" name= "threshold" type= "float" default= "0.1" />
2017-09-12 20:42:36 +00:00
<description >
2019-04-17 11:42:56 +00:00
Creates a bitmap that matches the given image dimensions, every element of the bitmap is set to [code]false[/code] if the alpha value of the image at that position is equal to [code]threshold[/code] or less, and [code]true[/code] in other case.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "get_bit" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "bool" />
<argument index= "0" name= "position" type= "Vector2" />
2017-09-12 20:42:36 +00:00
<description >
Returns bitmap's value at the specified position.
</description>
</method>
<method name= "get_size" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "Vector2" />
2017-09-12 20:42:36 +00:00
<description >
Returns bitmap's dimensions.
</description>
</method>
<method name= "get_true_bit_count" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "int" />
2017-09-12 20:42:36 +00:00
<description >
2019-04-17 11:42:56 +00:00
Returns the amount of bitmap elements that are set to [code]true[/code].
2017-09-12 20:42:36 +00:00
</description>
</method>
2018-08-20 22:35:30 +00:00
<method name= "grow_mask" >
2021-07-30 13:28:05 +00:00
<return type= "void" />
<argument index= "0" name= "pixels" type= "int" />
<argument index= "1" name= "rect" type= "Rect2" />
2018-08-20 22:35:30 +00:00
<description >
2021-11-04 18:05:19 +00:00
Applies morphological dilation or erosion to the bitmap. If [code]pixels[/code] is positive, dilation is applied to the bitmap. If [code]pixels[/code] is negative, erosion is applied to the bitmap. [code]rect[/code] defines the area where the morphological operation is applied. Pixels located outside the [code]rect[/code] are unaffected by [method grow_mask].
2018-08-20 22:35:30 +00:00
</description>
</method>
<method name= "opaque_to_polygons" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "Array" />
<argument index= "0" name= "rect" type= "Rect2" />
<argument index= "1" name= "epsilon" type= "float" default= "2.0" />
2018-08-20 22:35:30 +00:00
<description >
</description>
</method>
2017-09-12 20:42:36 +00:00
<method name= "set_bit" >
2021-07-30 13:28:05 +00:00
<return type= "void" />
<argument index= "0" name= "position" type= "Vector2" />
<argument index= "1" name= "bit" type= "bool" />
2017-09-12 20:42:36 +00:00
<description >
Sets the bitmap's element at the specified position, to the specified value.
</description>
</method>
<method name= "set_bit_rect" >
2021-07-30 13:28:05 +00:00
<return type= "void" />
<argument index= "0" name= "rect" type= "Rect2" />
<argument index= "1" name= "bit" type= "bool" />
2017-09-12 20:42:36 +00:00
<description >
Sets a rectangular portion of the bitmap to the specified value.
</description>
</method>
</methods>
<constants >
</constants>
</class>