123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- .. Generated automatically by doc/tools/makerst.py in Godot's source tree.
- .. DO NOT EDIT THIS FILE, but the ConvexPolygonShape2D.xml source instead.
- .. The source is found in doc/classes or modules/<name>/doc_classes.
- .. _class_ConvexPolygonShape2D:
- ConvexPolygonShape2D
- ====================
- **Inherits:** :ref:`Shape2D<class_shape2d>` **<** :ref:`Resource<class_resource>` **<** :ref:`Reference<class_reference>` **<** :ref:`Object<class_object>`
- **Category:** Core
- Brief Description
- -----------------
- Convex Polygon Shape for 2D physics.
- Member Functions
- ----------------
- +-------+--------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_point_cloud<class_ConvexPolygonShape2D_set_point_cloud>` **(** :ref:`PoolVector2Array<class_poolvector2array>` point_cloud **)** |
- +-------+--------------------------------------------------------------------------------------------------------------------------------------------+
- Member Variables
- ----------------
- .. _class_ConvexPolygonShape2D_points:
- - :ref:`PoolVector2Array<class_poolvector2array>` **points** - The polygon's list of vertices. Can be in either clockwise or counterclockwise order.
- 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 ``ConvexPolygonShape2D`` and a :ref:`ConcavePolygonShape2D<class_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_set_point_cloud:
- - void **set_point_cloud** **(** :ref:`PoolVector2Array<class_poolvector2array>` point_cloud **)**
- Currently, this method does nothing.
|