class_bitmap.rst 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. :github_url: hide
  2. .. DO NOT EDIT THIS FILE!!!
  3. .. Generated automatically from Godot engine sources.
  4. .. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/BitMap.xml.
  6. .. _class_BitMap:
  7. BitMap
  8. ======
  9. **Inherits:** :ref:`Resource<class_Resource>` **<** :ref:`Reference<class_Reference>` **<** :ref:`Object<class_Object>`
  10. Boolean matrix.
  11. .. rst-class:: classref-introduction-group
  12. Description
  13. -----------
  14. 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.
  15. .. rst-class:: classref-reftable-group
  16. Methods
  17. -------
  18. .. table::
  19. :widths: auto
  20. +-------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  21. | :ref:`Image<class_Image>` | :ref:`convert_to_image<class_BitMap_method_convert_to_image>` **(** **)** |const| |
  22. +-------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  23. | void | :ref:`create<class_BitMap_method_create>` **(** :ref:`Vector2<class_Vector2>` size **)** |
  24. +-------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  25. | void | :ref:`create_from_image_alpha<class_BitMap_method_create_from_image_alpha>` **(** :ref:`Image<class_Image>` image, :ref:`float<class_float>` threshold=0.1 **)** |
  26. +-------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  27. | :ref:`bool<class_bool>` | :ref:`get_bit<class_BitMap_method_get_bit>` **(** :ref:`Vector2<class_Vector2>` position **)** |const| |
  28. +-------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  29. | :ref:`Vector2<class_Vector2>` | :ref:`get_size<class_BitMap_method_get_size>` **(** **)** |const| |
  30. +-------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  31. | :ref:`int<class_int>` | :ref:`get_true_bit_count<class_BitMap_method_get_true_bit_count>` **(** **)** |const| |
  32. +-------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  33. | void | :ref:`grow_mask<class_BitMap_method_grow_mask>` **(** :ref:`int<class_int>` pixels, :ref:`Rect2<class_Rect2>` rect **)** |
  34. +-------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  35. | :ref:`Array<class_Array>` | :ref:`opaque_to_polygons<class_BitMap_method_opaque_to_polygons>` **(** :ref:`Rect2<class_Rect2>` rect, :ref:`float<class_float>` epsilon=2.0 **)** |const| |
  36. +-------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  37. | void | :ref:`resize<class_BitMap_method_resize>` **(** :ref:`Vector2<class_Vector2>` new_size **)** |
  38. +-------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  39. | void | :ref:`set_bit<class_BitMap_method_set_bit>` **(** :ref:`Vector2<class_Vector2>` position, :ref:`bool<class_bool>` bit **)** |
  40. +-------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  41. | void | :ref:`set_bit_rect<class_BitMap_method_set_bit_rect>` **(** :ref:`Rect2<class_Rect2>` rect, :ref:`bool<class_bool>` bit **)** |
  42. +-------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  43. .. rst-class:: classref-section-separator
  44. ----
  45. .. rst-class:: classref-descriptions-group
  46. Method Descriptions
  47. -------------------
  48. .. _class_BitMap_method_convert_to_image:
  49. .. rst-class:: classref-method
  50. :ref:`Image<class_Image>` **convert_to_image** **(** **)** |const|
  51. Returns an image of the same size as the bitmap and with a :ref:`Format<enum_Image_Format>` of type ``FORMAT_L8``. ``true`` bits of the bitmap are being converted into white pixels, and ``false`` bits into black.
  52. .. rst-class:: classref-item-separator
  53. ----
  54. .. _class_BitMap_method_create:
  55. .. rst-class:: classref-method
  56. void **create** **(** :ref:`Vector2<class_Vector2>` size **)**
  57. Creates a bitmap with the specified size, filled with ``false``.
  58. .. rst-class:: classref-item-separator
  59. ----
  60. .. _class_BitMap_method_create_from_image_alpha:
  61. .. rst-class:: classref-method
  62. void **create_from_image_alpha** **(** :ref:`Image<class_Image>` image, :ref:`float<class_float>` threshold=0.1 **)**
  63. 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 equal to ``threshold`` or less, and ``true`` in other case.
  64. .. rst-class:: classref-item-separator
  65. ----
  66. .. _class_BitMap_method_get_bit:
  67. .. rst-class:: classref-method
  68. :ref:`bool<class_bool>` **get_bit** **(** :ref:`Vector2<class_Vector2>` position **)** |const|
  69. Returns bitmap's value at the specified position.
  70. .. rst-class:: classref-item-separator
  71. ----
  72. .. _class_BitMap_method_get_size:
  73. .. rst-class:: classref-method
  74. :ref:`Vector2<class_Vector2>` **get_size** **(** **)** |const|
  75. Returns bitmap's dimensions.
  76. .. rst-class:: classref-item-separator
  77. ----
  78. .. _class_BitMap_method_get_true_bit_count:
  79. .. rst-class:: classref-method
  80. :ref:`int<class_int>` **get_true_bit_count** **(** **)** |const|
  81. Returns the amount of bitmap elements that are set to ``true``.
  82. .. rst-class:: classref-item-separator
  83. ----
  84. .. _class_BitMap_method_grow_mask:
  85. .. rst-class:: classref-method
  86. void **grow_mask** **(** :ref:`int<class_int>` pixels, :ref:`Rect2<class_Rect2>` rect **)**
  87. Applies morphological dilation or erosion to the bitmap. If ``pixels`` is positive, dilation is applied to the bitmap. If ``pixels`` is negative, erosion is applied to the bitmap. ``rect`` defines the area where the morphological operation is applied. Pixels located outside the ``rect`` are unaffected by :ref:`grow_mask<class_BitMap_method_grow_mask>`.
  88. .. rst-class:: classref-item-separator
  89. ----
  90. .. _class_BitMap_method_opaque_to_polygons:
  91. .. rst-class:: classref-method
  92. :ref:`Array<class_Array>` **opaque_to_polygons** **(** :ref:`Rect2<class_Rect2>` rect, :ref:`float<class_float>` epsilon=2.0 **)** |const|
  93. .. container:: contribute
  94. There is currently no description for this method. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  95. .. rst-class:: classref-item-separator
  96. ----
  97. .. _class_BitMap_method_resize:
  98. .. rst-class:: classref-method
  99. void **resize** **(** :ref:`Vector2<class_Vector2>` new_size **)**
  100. Resizes the image to ``new_size``.
  101. .. rst-class:: classref-item-separator
  102. ----
  103. .. _class_BitMap_method_set_bit:
  104. .. rst-class:: classref-method
  105. void **set_bit** **(** :ref:`Vector2<class_Vector2>` position, :ref:`bool<class_bool>` bit **)**
  106. Sets the bitmap's element at the specified position, to the specified value.
  107. .. rst-class:: classref-item-separator
  108. ----
  109. .. _class_BitMap_method_set_bit_rect:
  110. .. rst-class:: classref-method
  111. void **set_bit_rect** **(** :ref:`Rect2<class_Rect2>` rect, :ref:`bool<class_bool>` bit **)**
  112. Sets a rectangular portion of the bitmap to the specified value.
  113. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  114. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  115. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  116. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`