.. Generated automatically by doc/tools/makerst.py in Godot's source tree. .. DO NOT EDIT THIS FILE, but the doc/base/classes.xml source instead. .. _class_ConvexPolygonShape2D: ConvexPolygonShape2D ==================== **Inherits:** :ref:`Shape2D` **<** :ref:`Resource` **<** :ref:`Reference` **<** :ref:`Object` **Category:** Core Brief Description ----------------- Convex Polygon Shape for 2D physics. Member Functions ---------------- +--------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`PoolVector2Array` | :ref:`get_points` **(** **)** const | +--------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_point_cloud` **(** :ref:`PoolVector2Array` point_cloud **)** | +--------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_points` **(** :ref:`PoolVector2Array` points **)** | +--------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+ Member Variables ---------------- - :ref:`PoolVector2Array` **points** Description ----------- Convex Polygon Shape for 2D physics. A convex polygon, whatever its shape, is internally decomposed into as many convex polygons as needed to ensure all collision checks against it are always done on convex polygons (which are faster to check). The main difference between a :ref:`ConvexPolygonShape2D` and a :ref:`ConcavePolygonShape2D` is that a concave polygon assumes it is concave and uses a more complex method of collision detection, and a convex one forces itself to be convex in order to speed up collision detection. Member Function Description --------------------------- .. _class_ConvexPolygonShape2D_get_points: - :ref:`PoolVector2Array` **get_points** **(** **)** const Return a list of points in either clockwise or counter clockwise order, forming a convex polygon. .. _class_ConvexPolygonShape2D_set_point_cloud: - void **set_point_cloud** **(** :ref:`PoolVector2Array` point_cloud **)** Currently, this method does nothing. .. _class_ConvexPolygonShape2D_set_points: - void **set_points** **(** :ref:`PoolVector2Array` points **)** Set a list of points in either clockwise or counter clockwise order, forming a convex polygon.