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>
<demos>
</demos>
<methods>
<methodname="create">
<returntype="void">
</return>
<argumentindex="0"name="size"type="Vector2">
</argument>
<description>
Creates a bitmap with the specified size, filled with false.
</description>
</method>
<methodname="create_from_image_alpha">
<returntype="void">
</return>
<argumentindex="0"name="image"type="Image">
</argument>
<description>
Creates a bitmap that matches the given image dimensions, every element of the bitmap is set to false if the alpha value of the image at that position is 0, and true in other case.