class_curve3d.rst 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480
  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/4.2/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/4.2/doc/classes/Curve3D.xml.
  6. .. _class_Curve3D:
  7. Curve3D
  8. =======
  9. **Inherits:** :ref:`Resource<class_Resource>` **<** :ref:`RefCounted<class_RefCounted>` **<** :ref:`Object<class_Object>`
  10. Describes a Bézier curve in 3D space.
  11. .. rst-class:: classref-introduction-group
  12. Description
  13. -----------
  14. This class describes a Bézier curve in 3D space. It is mainly used to give a shape to a :ref:`Path3D<class_Path3D>`, but can be manually sampled for other purposes.
  15. It keeps a cache of precalculated points along the curve, to speed up further calculations.
  16. .. rst-class:: classref-reftable-group
  17. Properties
  18. ----------
  19. .. table::
  20. :widths: auto
  21. +---------------------------+--------------------------------------------------------------------+----------+
  22. | :ref:`float<class_float>` | :ref:`bake_interval<class_Curve3D_property_bake_interval>` | ``0.2`` |
  23. +---------------------------+--------------------------------------------------------------------+----------+
  24. | :ref:`int<class_int>` | :ref:`point_count<class_Curve3D_property_point_count>` | ``0`` |
  25. +---------------------------+--------------------------------------------------------------------+----------+
  26. | :ref:`bool<class_bool>` | :ref:`up_vector_enabled<class_Curve3D_property_up_vector_enabled>` | ``true`` |
  27. +---------------------------+--------------------------------------------------------------------+----------+
  28. .. rst-class:: classref-reftable-group
  29. Methods
  30. -------
  31. .. table::
  32. :widths: auto
  33. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  34. | void | :ref:`add_point<class_Curve3D_method_add_point>` **(** :ref:`Vector3<class_Vector3>` position, :ref:`Vector3<class_Vector3>` in=Vector3(0, 0, 0), :ref:`Vector3<class_Vector3>` out=Vector3(0, 0, 0), :ref:`int<class_int>` index=-1 **)** |
  35. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  36. | void | :ref:`clear_points<class_Curve3D_method_clear_points>` **(** **)** |
  37. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  38. | :ref:`float<class_float>` | :ref:`get_baked_length<class_Curve3D_method_get_baked_length>` **(** **)** |const| |
  39. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  40. | :ref:`PackedVector3Array<class_PackedVector3Array>` | :ref:`get_baked_points<class_Curve3D_method_get_baked_points>` **(** **)** |const| |
  41. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  42. | :ref:`PackedFloat32Array<class_PackedFloat32Array>` | :ref:`get_baked_tilts<class_Curve3D_method_get_baked_tilts>` **(** **)** |const| |
  43. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  44. | :ref:`PackedVector3Array<class_PackedVector3Array>` | :ref:`get_baked_up_vectors<class_Curve3D_method_get_baked_up_vectors>` **(** **)** |const| |
  45. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  46. | :ref:`float<class_float>` | :ref:`get_closest_offset<class_Curve3D_method_get_closest_offset>` **(** :ref:`Vector3<class_Vector3>` to_point **)** |const| |
  47. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  48. | :ref:`Vector3<class_Vector3>` | :ref:`get_closest_point<class_Curve3D_method_get_closest_point>` **(** :ref:`Vector3<class_Vector3>` to_point **)** |const| |
  49. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  50. | :ref:`Vector3<class_Vector3>` | :ref:`get_point_in<class_Curve3D_method_get_point_in>` **(** :ref:`int<class_int>` idx **)** |const| |
  51. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  52. | :ref:`Vector3<class_Vector3>` | :ref:`get_point_out<class_Curve3D_method_get_point_out>` **(** :ref:`int<class_int>` idx **)** |const| |
  53. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  54. | :ref:`Vector3<class_Vector3>` | :ref:`get_point_position<class_Curve3D_method_get_point_position>` **(** :ref:`int<class_int>` idx **)** |const| |
  55. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  56. | :ref:`float<class_float>` | :ref:`get_point_tilt<class_Curve3D_method_get_point_tilt>` **(** :ref:`int<class_int>` idx **)** |const| |
  57. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  58. | void | :ref:`remove_point<class_Curve3D_method_remove_point>` **(** :ref:`int<class_int>` idx **)** |
  59. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  60. | :ref:`Vector3<class_Vector3>` | :ref:`sample<class_Curve3D_method_sample>` **(** :ref:`int<class_int>` idx, :ref:`float<class_float>` t **)** |const| |
  61. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  62. | :ref:`Vector3<class_Vector3>` | :ref:`sample_baked<class_Curve3D_method_sample_baked>` **(** :ref:`float<class_float>` offset=0.0, :ref:`bool<class_bool>` cubic=false **)** |const| |
  63. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  64. | :ref:`Vector3<class_Vector3>` | :ref:`sample_baked_up_vector<class_Curve3D_method_sample_baked_up_vector>` **(** :ref:`float<class_float>` offset, :ref:`bool<class_bool>` apply_tilt=false **)** |const| |
  65. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  66. | :ref:`Transform3D<class_Transform3D>` | :ref:`sample_baked_with_rotation<class_Curve3D_method_sample_baked_with_rotation>` **(** :ref:`float<class_float>` offset=0.0, :ref:`bool<class_bool>` cubic=false, :ref:`bool<class_bool>` apply_tilt=false **)** |const| |
  67. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  68. | :ref:`Vector3<class_Vector3>` | :ref:`samplef<class_Curve3D_method_samplef>` **(** :ref:`float<class_float>` fofs **)** |const| |
  69. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  70. | void | :ref:`set_point_in<class_Curve3D_method_set_point_in>` **(** :ref:`int<class_int>` idx, :ref:`Vector3<class_Vector3>` position **)** |
  71. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  72. | void | :ref:`set_point_out<class_Curve3D_method_set_point_out>` **(** :ref:`int<class_int>` idx, :ref:`Vector3<class_Vector3>` position **)** |
  73. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  74. | void | :ref:`set_point_position<class_Curve3D_method_set_point_position>` **(** :ref:`int<class_int>` idx, :ref:`Vector3<class_Vector3>` position **)** |
  75. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  76. | void | :ref:`set_point_tilt<class_Curve3D_method_set_point_tilt>` **(** :ref:`int<class_int>` idx, :ref:`float<class_float>` tilt **)** |
  77. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  78. | :ref:`PackedVector3Array<class_PackedVector3Array>` | :ref:`tessellate<class_Curve3D_method_tessellate>` **(** :ref:`int<class_int>` max_stages=5, :ref:`float<class_float>` tolerance_degrees=4 **)** |const| |
  79. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  80. | :ref:`PackedVector3Array<class_PackedVector3Array>` | :ref:`tessellate_even_length<class_Curve3D_method_tessellate_even_length>` **(** :ref:`int<class_int>` max_stages=5, :ref:`float<class_float>` tolerance_length=0.2 **)** |const| |
  81. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  82. .. rst-class:: classref-section-separator
  83. ----
  84. .. rst-class:: classref-descriptions-group
  85. Property Descriptions
  86. ---------------------
  87. .. _class_Curve3D_property_bake_interval:
  88. .. rst-class:: classref-property
  89. :ref:`float<class_float>` **bake_interval** = ``0.2``
  90. .. rst-class:: classref-property-setget
  91. - void **set_bake_interval** **(** :ref:`float<class_float>` value **)**
  92. - :ref:`float<class_float>` **get_bake_interval** **(** **)**
  93. The distance in meters between two adjacent cached points. Changing it forces the cache to be recomputed the next time the :ref:`get_baked_points<class_Curve3D_method_get_baked_points>` or :ref:`get_baked_length<class_Curve3D_method_get_baked_length>` function is called. The smaller the distance, the more points in the cache and the more memory it will consume, so use with care.
  94. .. rst-class:: classref-item-separator
  95. ----
  96. .. _class_Curve3D_property_point_count:
  97. .. rst-class:: classref-property
  98. :ref:`int<class_int>` **point_count** = ``0``
  99. .. rst-class:: classref-property-setget
  100. - void **set_point_count** **(** :ref:`int<class_int>` value **)**
  101. - :ref:`int<class_int>` **get_point_count** **(** **)**
  102. The number of points describing the curve.
  103. .. rst-class:: classref-item-separator
  104. ----
  105. .. _class_Curve3D_property_up_vector_enabled:
  106. .. rst-class:: classref-property
  107. :ref:`bool<class_bool>` **up_vector_enabled** = ``true``
  108. .. rst-class:: classref-property-setget
  109. - void **set_up_vector_enabled** **(** :ref:`bool<class_bool>` value **)**
  110. - :ref:`bool<class_bool>` **is_up_vector_enabled** **(** **)**
  111. If ``true``, the curve will bake up vectors used for orientation. This is used when :ref:`PathFollow3D.rotation_mode<class_PathFollow3D_property_rotation_mode>` is set to :ref:`PathFollow3D.ROTATION_ORIENTED<class_PathFollow3D_constant_ROTATION_ORIENTED>`. Changing it forces the cache to be recomputed.
  112. .. rst-class:: classref-section-separator
  113. ----
  114. .. rst-class:: classref-descriptions-group
  115. Method Descriptions
  116. -------------------
  117. .. _class_Curve3D_method_add_point:
  118. .. rst-class:: classref-method
  119. void **add_point** **(** :ref:`Vector3<class_Vector3>` position, :ref:`Vector3<class_Vector3>` in=Vector3(0, 0, 0), :ref:`Vector3<class_Vector3>` out=Vector3(0, 0, 0), :ref:`int<class_int>` index=-1 **)**
  120. Adds a point with the specified ``position`` relative to the curve's own position, with control points ``in`` and ``out``. Appends the new point at the end of the point list.
  121. If ``index`` is given, the new point is inserted before the existing point identified by index ``index``. Every existing point starting from ``index`` is shifted further down the list of points. The index must be greater than or equal to ``0`` and must not exceed the number of existing points in the line. See :ref:`point_count<class_Curve3D_property_point_count>`.
  122. .. rst-class:: classref-item-separator
  123. ----
  124. .. _class_Curve3D_method_clear_points:
  125. .. rst-class:: classref-method
  126. void **clear_points** **(** **)**
  127. Removes all points from the curve.
  128. .. rst-class:: classref-item-separator
  129. ----
  130. .. _class_Curve3D_method_get_baked_length:
  131. .. rst-class:: classref-method
  132. :ref:`float<class_float>` **get_baked_length** **(** **)** |const|
  133. Returns the total length of the curve, based on the cached points. Given enough density (see :ref:`bake_interval<class_Curve3D_property_bake_interval>`), it should be approximate enough.
  134. .. rst-class:: classref-item-separator
  135. ----
  136. .. _class_Curve3D_method_get_baked_points:
  137. .. rst-class:: classref-method
  138. :ref:`PackedVector3Array<class_PackedVector3Array>` **get_baked_points** **(** **)** |const|
  139. Returns the cache of points as a :ref:`PackedVector3Array<class_PackedVector3Array>`.
  140. .. rst-class:: classref-item-separator
  141. ----
  142. .. _class_Curve3D_method_get_baked_tilts:
  143. .. rst-class:: classref-method
  144. :ref:`PackedFloat32Array<class_PackedFloat32Array>` **get_baked_tilts** **(** **)** |const|
  145. Returns the cache of tilts as a :ref:`PackedFloat32Array<class_PackedFloat32Array>`.
  146. .. rst-class:: classref-item-separator
  147. ----
  148. .. _class_Curve3D_method_get_baked_up_vectors:
  149. .. rst-class:: classref-method
  150. :ref:`PackedVector3Array<class_PackedVector3Array>` **get_baked_up_vectors** **(** **)** |const|
  151. Returns the cache of up vectors as a :ref:`PackedVector3Array<class_PackedVector3Array>`.
  152. If :ref:`up_vector_enabled<class_Curve3D_property_up_vector_enabled>` is ``false``, the cache will be empty.
  153. .. rst-class:: classref-item-separator
  154. ----
  155. .. _class_Curve3D_method_get_closest_offset:
  156. .. rst-class:: classref-method
  157. :ref:`float<class_float>` **get_closest_offset** **(** :ref:`Vector3<class_Vector3>` to_point **)** |const|
  158. Returns the closest offset to ``to_point``. This offset is meant to be used in :ref:`sample_baked<class_Curve3D_method_sample_baked>` or :ref:`sample_baked_up_vector<class_Curve3D_method_sample_baked_up_vector>`.
  159. \ ``to_point`` must be in this curve's local space.
  160. .. rst-class:: classref-item-separator
  161. ----
  162. .. _class_Curve3D_method_get_closest_point:
  163. .. rst-class:: classref-method
  164. :ref:`Vector3<class_Vector3>` **get_closest_point** **(** :ref:`Vector3<class_Vector3>` to_point **)** |const|
  165. Returns the closest point on baked segments (in curve's local space) to ``to_point``.
  166. \ ``to_point`` must be in this curve's local space.
  167. .. rst-class:: classref-item-separator
  168. ----
  169. .. _class_Curve3D_method_get_point_in:
  170. .. rst-class:: classref-method
  171. :ref:`Vector3<class_Vector3>` **get_point_in** **(** :ref:`int<class_int>` idx **)** |const|
  172. Returns the position of the control point leading to the vertex ``idx``. The returned position is relative to the vertex ``idx``. If the index is out of bounds, the function sends an error to the console, and returns ``(0, 0, 0)``.
  173. .. rst-class:: classref-item-separator
  174. ----
  175. .. _class_Curve3D_method_get_point_out:
  176. .. rst-class:: classref-method
  177. :ref:`Vector3<class_Vector3>` **get_point_out** **(** :ref:`int<class_int>` idx **)** |const|
  178. Returns the position of the control point leading out of the vertex ``idx``. The returned position is relative to the vertex ``idx``. If the index is out of bounds, the function sends an error to the console, and returns ``(0, 0, 0)``.
  179. .. rst-class:: classref-item-separator
  180. ----
  181. .. _class_Curve3D_method_get_point_position:
  182. .. rst-class:: classref-method
  183. :ref:`Vector3<class_Vector3>` **get_point_position** **(** :ref:`int<class_int>` idx **)** |const|
  184. Returns the position of the vertex ``idx``. If the index is out of bounds, the function sends an error to the console, and returns ``(0, 0, 0)``.
  185. .. rst-class:: classref-item-separator
  186. ----
  187. .. _class_Curve3D_method_get_point_tilt:
  188. .. rst-class:: classref-method
  189. :ref:`float<class_float>` **get_point_tilt** **(** :ref:`int<class_int>` idx **)** |const|
  190. Returns the tilt angle in radians for the point ``idx``. If the index is out of bounds, the function sends an error to the console, and returns ``0``.
  191. .. rst-class:: classref-item-separator
  192. ----
  193. .. _class_Curve3D_method_remove_point:
  194. .. rst-class:: classref-method
  195. void **remove_point** **(** :ref:`int<class_int>` idx **)**
  196. Deletes the point ``idx`` from the curve. Sends an error to the console if ``idx`` is out of bounds.
  197. .. rst-class:: classref-item-separator
  198. ----
  199. .. _class_Curve3D_method_sample:
  200. .. rst-class:: classref-method
  201. :ref:`Vector3<class_Vector3>` **sample** **(** :ref:`int<class_int>` idx, :ref:`float<class_float>` t **)** |const|
  202. Returns the position between the vertex ``idx`` and the vertex ``idx + 1``, where ``t`` controls if the point is the first vertex (``t = 0.0``), the last vertex (``t = 1.0``), or in between. Values of ``t`` outside the range (``0.0 >= t <=1``) give strange, but predictable results.
  203. If ``idx`` is out of bounds it is truncated to the first or last vertex, and ``t`` is ignored. If the curve has no points, the function sends an error to the console, and returns ``(0, 0, 0)``.
  204. .. rst-class:: classref-item-separator
  205. ----
  206. .. _class_Curve3D_method_sample_baked:
  207. .. rst-class:: classref-method
  208. :ref:`Vector3<class_Vector3>` **sample_baked** **(** :ref:`float<class_float>` offset=0.0, :ref:`bool<class_bool>` cubic=false **)** |const|
  209. Returns a point within the curve at position ``offset``, where ``offset`` is measured as a distance in 3D units along the curve. To do that, it finds the two cached points where the ``offset`` lies between, then interpolates the values. This interpolation is cubic if ``cubic`` is set to ``true``, or linear if set to ``false``.
  210. Cubic interpolation tends to follow the curves better, but linear is faster (and often, precise enough).
  211. .. rst-class:: classref-item-separator
  212. ----
  213. .. _class_Curve3D_method_sample_baked_up_vector:
  214. .. rst-class:: classref-method
  215. :ref:`Vector3<class_Vector3>` **sample_baked_up_vector** **(** :ref:`float<class_float>` offset, :ref:`bool<class_bool>` apply_tilt=false **)** |const|
  216. Returns an up vector within the curve at position ``offset``, where ``offset`` is measured as a distance in 3D units along the curve. To do that, it finds the two cached up vectors where the ``offset`` lies between, then interpolates the values. If ``apply_tilt`` is ``true``, an interpolated tilt is applied to the interpolated up vector.
  217. If the curve has no up vectors, the function sends an error to the console, and returns ``(0, 1, 0)``.
  218. .. rst-class:: classref-item-separator
  219. ----
  220. .. _class_Curve3D_method_sample_baked_with_rotation:
  221. .. rst-class:: classref-method
  222. :ref:`Transform3D<class_Transform3D>` **sample_baked_with_rotation** **(** :ref:`float<class_float>` offset=0.0, :ref:`bool<class_bool>` cubic=false, :ref:`bool<class_bool>` apply_tilt=false **)** |const|
  223. Returns a :ref:`Transform3D<class_Transform3D>` with ``origin`` as point position, ``basis.x`` as sideway vector, ``basis.y`` as up vector, ``basis.z`` as forward vector. When the curve length is 0, there is no reasonable way to calculate the rotation, all vectors aligned with global space axes. See also :ref:`sample_baked<class_Curve3D_method_sample_baked>`.
  224. .. rst-class:: classref-item-separator
  225. ----
  226. .. _class_Curve3D_method_samplef:
  227. .. rst-class:: classref-method
  228. :ref:`Vector3<class_Vector3>` **samplef** **(** :ref:`float<class_float>` fofs **)** |const|
  229. Returns the position at the vertex ``fofs``. It calls :ref:`sample<class_Curve3D_method_sample>` using the integer part of ``fofs`` as ``idx``, and its fractional part as ``t``.
  230. .. rst-class:: classref-item-separator
  231. ----
  232. .. _class_Curve3D_method_set_point_in:
  233. .. rst-class:: classref-method
  234. void **set_point_in** **(** :ref:`int<class_int>` idx, :ref:`Vector3<class_Vector3>` position **)**
  235. Sets the position of the control point leading to the vertex ``idx``. If the index is out of bounds, the function sends an error to the console. The position is relative to the vertex.
  236. .. rst-class:: classref-item-separator
  237. ----
  238. .. _class_Curve3D_method_set_point_out:
  239. .. rst-class:: classref-method
  240. void **set_point_out** **(** :ref:`int<class_int>` idx, :ref:`Vector3<class_Vector3>` position **)**
  241. Sets the position of the control point leading out of the vertex ``idx``. If the index is out of bounds, the function sends an error to the console. The position is relative to the vertex.
  242. .. rst-class:: classref-item-separator
  243. ----
  244. .. _class_Curve3D_method_set_point_position:
  245. .. rst-class:: classref-method
  246. void **set_point_position** **(** :ref:`int<class_int>` idx, :ref:`Vector3<class_Vector3>` position **)**
  247. Sets the position for the vertex ``idx``. If the index is out of bounds, the function sends an error to the console.
  248. .. rst-class:: classref-item-separator
  249. ----
  250. .. _class_Curve3D_method_set_point_tilt:
  251. .. rst-class:: classref-method
  252. void **set_point_tilt** **(** :ref:`int<class_int>` idx, :ref:`float<class_float>` tilt **)**
  253. Sets the tilt angle in radians for the point ``idx``. If the index is out of bounds, the function sends an error to the console.
  254. The tilt controls the rotation along the look-at axis an object traveling the path would have. In the case of a curve controlling a :ref:`PathFollow3D<class_PathFollow3D>`, this tilt is an offset over the natural tilt the :ref:`PathFollow3D<class_PathFollow3D>` calculates.
  255. .. rst-class:: classref-item-separator
  256. ----
  257. .. _class_Curve3D_method_tessellate:
  258. .. rst-class:: classref-method
  259. :ref:`PackedVector3Array<class_PackedVector3Array>` **tessellate** **(** :ref:`int<class_int>` max_stages=5, :ref:`float<class_float>` tolerance_degrees=4 **)** |const|
  260. Returns a list of points along the curve, with a curvature controlled point density. That is, the curvier parts will have more points than the straighter parts.
  261. This approximation makes straight segments between each point, then subdivides those segments until the resulting shape is similar enough.
  262. \ ``max_stages`` controls how many subdivisions a curve segment may face before it is considered approximate enough. Each subdivision splits the segment in half, so the default 5 stages may mean up to 32 subdivisions per curve segment. Increase with care!
  263. \ ``tolerance_degrees`` controls how many degrees the midpoint of a segment may deviate from the real curve, before the segment has to be subdivided.
  264. .. rst-class:: classref-item-separator
  265. ----
  266. .. _class_Curve3D_method_tessellate_even_length:
  267. .. rst-class:: classref-method
  268. :ref:`PackedVector3Array<class_PackedVector3Array>` **tessellate_even_length** **(** :ref:`int<class_int>` max_stages=5, :ref:`float<class_float>` tolerance_length=0.2 **)** |const|
  269. Returns a list of points along the curve, with almost uniform density. ``max_stages`` controls how many subdivisions a curve segment may face before it is considered approximate enough. Each subdivision splits the segment in half, so the default 5 stages may mean up to 32 subdivisions per curve segment. Increase with care!
  270. \ ``tolerance_length`` controls the maximal distance between two neighboring points, before the segment has to be subdivided.
  271. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  272. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  273. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  274. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  275. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  276. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  277. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`