mirror of
https://github.com/godotengine/godot-docs.git
synced 2026-01-04 14:11:02 +03:00
classref: Sync with current master branch (705b7a0)
This commit is contained in:
@@ -70,7 +70,7 @@ Method Descriptions
|
||||
|
||||
.. rst-class:: classref-method
|
||||
|
||||
:ref:`Image<class_Image>` **convert_to_image**\ (\ ) |const|
|
||||
:ref:`Image<class_Image>` **convert_to_image**\ (\ ) |const| :ref:`🔗<class_BitMap_method_convert_to_image>`
|
||||
|
||||
Returns an image of the same size as the bitmap and with a :ref:`Format<enum_Image_Format>` of type :ref:`Image.FORMAT_L8<class_Image_constant_FORMAT_L8>`. ``true`` bits of the bitmap are being converted into white pixels, and ``false`` bits into black.
|
||||
|
||||
@@ -82,7 +82,7 @@ Returns an image of the same size as the bitmap and with a :ref:`Format<enum_Ima
|
||||
|
||||
.. rst-class:: classref-method
|
||||
|
||||
|void| **create**\ (\ size\: :ref:`Vector2i<class_Vector2i>`\ )
|
||||
|void| **create**\ (\ size\: :ref:`Vector2i<class_Vector2i>`\ ) :ref:`🔗<class_BitMap_method_create>`
|
||||
|
||||
Creates a bitmap with the specified size, filled with ``false``.
|
||||
|
||||
@@ -94,7 +94,7 @@ Creates a bitmap with the specified size, filled with ``false``.
|
||||
|
||||
.. rst-class:: classref-method
|
||||
|
||||
|void| **create_from_image_alpha**\ (\ image\: :ref:`Image<class_Image>`, threshold\: :ref:`float<class_float>` = 0.1\ )
|
||||
|void| **create_from_image_alpha**\ (\ image\: :ref:`Image<class_Image>`, threshold\: :ref:`float<class_float>` = 0.1\ ) :ref:`🔗<class_BitMap_method_create_from_image_alpha>`
|
||||
|
||||
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.
|
||||
|
||||
@@ -106,7 +106,7 @@ Creates a bitmap that matches the given image dimensions, every element of the b
|
||||
|
||||
.. rst-class:: classref-method
|
||||
|
||||
:ref:`bool<class_bool>` **get_bit**\ (\ x\: :ref:`int<class_int>`, y\: :ref:`int<class_int>`\ ) |const|
|
||||
:ref:`bool<class_bool>` **get_bit**\ (\ x\: :ref:`int<class_int>`, y\: :ref:`int<class_int>`\ ) |const| :ref:`🔗<class_BitMap_method_get_bit>`
|
||||
|
||||
Returns bitmap's value at the specified position.
|
||||
|
||||
@@ -118,7 +118,7 @@ Returns bitmap's value at the specified position.
|
||||
|
||||
.. rst-class:: classref-method
|
||||
|
||||
:ref:`bool<class_bool>` **get_bitv**\ (\ position\: :ref:`Vector2i<class_Vector2i>`\ ) |const|
|
||||
:ref:`bool<class_bool>` **get_bitv**\ (\ position\: :ref:`Vector2i<class_Vector2i>`\ ) |const| :ref:`🔗<class_BitMap_method_get_bitv>`
|
||||
|
||||
Returns bitmap's value at the specified position.
|
||||
|
||||
@@ -130,7 +130,7 @@ Returns bitmap's value at the specified position.
|
||||
|
||||
.. rst-class:: classref-method
|
||||
|
||||
:ref:`Vector2i<class_Vector2i>` **get_size**\ (\ ) |const|
|
||||
:ref:`Vector2i<class_Vector2i>` **get_size**\ (\ ) |const| :ref:`🔗<class_BitMap_method_get_size>`
|
||||
|
||||
Returns bitmap's dimensions.
|
||||
|
||||
@@ -142,7 +142,7 @@ Returns bitmap's dimensions.
|
||||
|
||||
.. rst-class:: classref-method
|
||||
|
||||
:ref:`int<class_int>` **get_true_bit_count**\ (\ ) |const|
|
||||
:ref:`int<class_int>` **get_true_bit_count**\ (\ ) |const| :ref:`🔗<class_BitMap_method_get_true_bit_count>`
|
||||
|
||||
Returns the number of bitmap elements that are set to ``true``.
|
||||
|
||||
@@ -154,7 +154,7 @@ Returns the number of bitmap elements that are set to ``true``.
|
||||
|
||||
.. rst-class:: classref-method
|
||||
|
||||
|void| **grow_mask**\ (\ pixels\: :ref:`int<class_int>`, rect\: :ref:`Rect2i<class_Rect2i>`\ )
|
||||
|void| **grow_mask**\ (\ pixels\: :ref:`int<class_int>`, rect\: :ref:`Rect2i<class_Rect2i>`\ ) :ref:`🔗<class_BitMap_method_grow_mask>`
|
||||
|
||||
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>`.
|
||||
|
||||
@@ -166,7 +166,7 @@ Applies morphological dilation or erosion to the bitmap. If ``pixels`` is positi
|
||||
|
||||
.. rst-class:: classref-method
|
||||
|
||||
:ref:`Array<class_Array>`\[:ref:`PackedVector2Array<class_PackedVector2Array>`\] **opaque_to_polygons**\ (\ rect\: :ref:`Rect2i<class_Rect2i>`, epsilon\: :ref:`float<class_float>` = 2.0\ ) |const|
|
||||
:ref:`Array<class_Array>`\[:ref:`PackedVector2Array<class_PackedVector2Array>`\] **opaque_to_polygons**\ (\ rect\: :ref:`Rect2i<class_Rect2i>`, epsilon\: :ref:`float<class_float>` = 2.0\ ) |const| :ref:`🔗<class_BitMap_method_opaque_to_polygons>`
|
||||
|
||||
Creates an :ref:`Array<class_Array>` of polygons covering a rectangular portion of the bitmap. It uses a marching squares algorithm, followed by Ramer-Douglas-Peucker (RDP) reduction of the number of vertices. Each polygon is described as a :ref:`PackedVector2Array<class_PackedVector2Array>` of its vertices.
|
||||
|
||||
@@ -186,7 +186,7 @@ To get polygons covering the whole bitmap, pass:
|
||||
|
||||
.. rst-class:: classref-method
|
||||
|
||||
|void| **resize**\ (\ new_size\: :ref:`Vector2i<class_Vector2i>`\ )
|
||||
|void| **resize**\ (\ new_size\: :ref:`Vector2i<class_Vector2i>`\ ) :ref:`🔗<class_BitMap_method_resize>`
|
||||
|
||||
Resizes the image to ``new_size``.
|
||||
|
||||
@@ -198,7 +198,7 @@ Resizes the image to ``new_size``.
|
||||
|
||||
.. rst-class:: classref-method
|
||||
|
||||
|void| **set_bit**\ (\ x\: :ref:`int<class_int>`, y\: :ref:`int<class_int>`, bit\: :ref:`bool<class_bool>`\ )
|
||||
|void| **set_bit**\ (\ x\: :ref:`int<class_int>`, y\: :ref:`int<class_int>`, bit\: :ref:`bool<class_bool>`\ ) :ref:`🔗<class_BitMap_method_set_bit>`
|
||||
|
||||
Sets the bitmap's element at the specified position, to the specified value.
|
||||
|
||||
@@ -210,7 +210,7 @@ Sets the bitmap's element at the specified position, to the specified value.
|
||||
|
||||
.. rst-class:: classref-method
|
||||
|
||||
|void| **set_bit_rect**\ (\ rect\: :ref:`Rect2i<class_Rect2i>`, bit\: :ref:`bool<class_bool>`\ )
|
||||
|void| **set_bit_rect**\ (\ rect\: :ref:`Rect2i<class_Rect2i>`, bit\: :ref:`bool<class_bool>`\ ) :ref:`🔗<class_BitMap_method_set_bit_rect>`
|
||||
|
||||
Sets a rectangular portion of the bitmap to the specified value.
|
||||
|
||||
@@ -222,7 +222,7 @@ Sets a rectangular portion of the bitmap to the specified value.
|
||||
|
||||
.. rst-class:: classref-method
|
||||
|
||||
|void| **set_bitv**\ (\ position\: :ref:`Vector2i<class_Vector2i>`, bit\: :ref:`bool<class_bool>`\ )
|
||||
|void| **set_bitv**\ (\ position\: :ref:`Vector2i<class_Vector2i>`, bit\: :ref:`bool<class_bool>`\ ) :ref:`🔗<class_BitMap_method_set_bitv>`
|
||||
|
||||
Sets the bitmap's element at the specified position, to the specified value.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user