beziers_and_curves.rst 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. .. _doc_beziers_and_curves:
  2. Beziers, curves and paths
  3. =========================
  4. Bezier curves are a mathematical approximation of natural geometric shapes. We
  5. use them to represent a curve with as little information as possible and with a
  6. high level of flexibility.
  7. Unlike more abstract mathematical concepts, Bezier curves were created for
  8. industrial design. They are a popular tool in the graphics software industry.
  9. They rely on :ref:`interpolation<doc_interpolation>`, which we saw in the
  10. previous article, combining multiple steps to create smooth curves. To better
  11. understand how Bezier curves work, let's start from its simplest form: Quadratic
  12. Bezier.
  13. Quadratic Bezier
  14. ----------------
  15. Take three points, the minimum required for Quadratic Bezier to work:
  16. .. image:: img/bezier_quadratic_points.png
  17. To draw a curve between them, we first interpolate gradually over the two
  18. vertices of each of the two segments formed by the three points, using values
  19. ranging from 0 to 1. This gives us two points that move along the segments as we
  20. change the value of ``t`` from 0 to 1.
  21. .. tabs::
  22. .. code-tab:: gdscript GDScript
  23. func _quadratic_bezier(p0: Vector2, p1: Vector2, p2: Vector2, t: float):
  24. var q0 = p0.linear_interpolate(p1, t)
  25. var q1 = p1.linear_interpolate(p2, t)
  26. We then interpolate ``q0`` and ``q1`` to obtain a single point ``r`` that moves
  27. along a curve.
  28. .. tabs::
  29. .. code-tab:: gdscript GDScript
  30. var r = q0.linear_interpolate(q1, t)
  31. return r
  32. This type of is called a *Quadratic Bezier* curve.
  33. .. image:: img/bezier_quadratic_points2.gif
  34. *(Image credit: Wikipedia)*
  35. Cubic Bezier
  36. ------------
  37. Building upon the previous example, we can get more control by interpolating
  38. between four points.
  39. .. image:: img/bezier_cubic_points.png
  40. We first use a function with four parameters to take four points as an input,
  41. ``p0``, ``p1``, ``p2`` and ``p3``:
  42. .. tabs::
  43. .. code-tab:: gdscript GDScript
  44. func _cubic_bezier(p0: Vector2, p1: Vector2, p2: Vector2, p3: Vector2, t: float):
  45. We apply a linear interpolation to each couple of points to reduce them to
  46. three:
  47. .. tabs::
  48. .. code-tab:: gdscript GDScript
  49. var q0 = p0.linear_interpolate(p1, t)
  50. var q1 = p1.linear_interpolate(p2, t)
  51. var q2 = p2.linear_interpolate(p3, t)
  52. We then take our three points and reduce them to two:
  53. .. tabs::
  54. .. code-tab:: gdscript GDScript
  55. var r0 = q0.linear_interpolate(q1, t)
  56. var r1 = q1.linear_interpolate(q2, t)
  57. And to one:
  58. .. tabs::
  59. .. code-tab:: gdscript GDScript
  60. var s = r0.linear_interpolate(r1, t)
  61. return s
  62. Here is the full function:
  63. .. tabs::
  64. .. code-tab:: gdscript GDScript
  65. func _cubic_bezier(p0: Vector2, p1: Vector2, p2: Vector2, p3: Vector2, t: float):
  66. var q0 = p0.linear_interpolate(p1, t)
  67. var q1 = p1.linear_interpolate(p2, t)
  68. var q2 = p2.linear_interpolate(p3, t)
  69. var r0 = q0.linear_interpolate(q1, t)
  70. var r1 = q1.linear_interpolate(q2, t)
  71. var s = r0.linear_interpolate(r1, t)
  72. return s
  73. The result will be a smooth curve interpolating between all four points:
  74. .. image:: img/bezier_cubic_points.gif
  75. *(Image credit: Wikipedia)*
  76. .. note:: Cubic Bezier interpolation works the same in 3D, just use ``Vector3``
  77. instead of ``Vector2``.
  78. Adding control points
  79. ---------------------
  80. Building upon Cubic Bezier, we can change the way two of the points work to
  81. control the shape of our curve freely. Instead of having ``p0``, ``p1``, ``p2``
  82. and ``p3``, we will store them as:
  83. * ``point0 = p0``: Is the first point, the source
  84. * ``control0 = p1 - p0``: Is a vector relative to the first control point
  85. * ``control1 = p3 - p2``: Is a vector relative to the second control point
  86. * ``point1 = p3``: Is the second point, the destination
  87. This way, we have two points and two control points which are relative vectors
  88. to the respective points. If you've used graphics or animation software before,
  89. this might look familiar:
  90. .. image:: img/bezier_cubic_handles.png
  91. This is how graphics software presents Bezier curves to the users, and how they
  92. work and look in Godot.
  93. Curve2D, Curve3D, Path and Path2D
  94. ---------------------------------
  95. There are two objects that contain curves: :ref:`Curve3D <class_Curve3D>` and :ref:`Curve2D <class_Curve2D>` (for 3D and 2D respectively).
  96. They can contain several points, allowing for longer paths. It is also possible to set them to nodes: :ref:`Path <class_Path>` and :ref:`Path2D <class_Path2D>` (also for 3D and 2D respectively):
  97. .. image:: img/bezier_path_2d.png
  98. Using them, however, may not be completely obvious, so following is a description of the most common use cases for Bezier curves.
  99. Evaluating
  100. ----------
  101. Just evaluating them may be an option, but in most cases it's not very useful. The big drawback with Bezier curves is that if you traverse them at constant speed, from ``t = 0`` to ``t = 1``, the actual interpolation will *not* move at constant speed. The speed is also an interpolation between the distances between points ``p0``, ``p1``, ``p2`` and ``p3`` and there is not a mathematically simple way to traverse the curve at constant speed.
  102. Let's do a simple example with the following pseudocode:
  103. .. tabs::
  104. .. code-tab:: gdscript GDScript
  105. var t = 0.0
  106. func _process(delta):
  107. t += delta
  108. position = _cubic_bezier(p0, p1, p2, p3, t)
  109. .. image:: img/bezier_interpolation_speed.gif
  110. As you can see, the speed (in pixels per second) of the circle varies, even though ``t`` is increased at constant speed. This makes beziers difficult to use for anything practical out of the box.
  111. Drawing
  112. -------
  113. Drawing beziers (or objects based on the curve) is a very common use case, but it's also not easy. For pretty much any case, Bezier curves need to be converted to some sort of segments. This is normally difficult, however, without creating a very high amount of them.
  114. The reason is that some sections of a curve (specifically, corners) may require considerable amounts of points, while other sections may not:
  115. .. image:: img/bezier_point_amount.png
  116. Additionally, if both control points were ``0, 0`` (remember they are relative vectors), the Bezier curve would just be a straight line (so drawing a high amount of points would be wasteful).
  117. Before drawing Bezier curves, *tesselation* is required. This is often done with a recursive or divide and conquer function that splits the curve until the curvature amount becomes less than a certain threshold.
  118. The *Curve* classes provide this via the
  119. :ref:`Curve2D.tessellate() <class_Curve2D_method_tessellate>` function (which receives optional ``stages`` of recursion and angle ``tolerance`` arguments). This way, drawing something based on a curve is easier.
  120. Traversal
  121. ---------
  122. The last common use case for the curves is to traverse them. Because of what was mentioned before regarding constant speed, this is also difficult.
  123. To make this easier, the curves need to be *baked* into equidistant points. This way, they can be approximated with regular interpolation (which can be improved further with a cubic option). To do this, just use the :ref:`Curve.interpolate_baked()<class_Curve_method_interpolate_baked>` method together with
  124. :ref:`Curve2D.get_baked_length()<class_Curve2D_method_get_baked_length>`. The first call to either of them will bake the curve internally.
  125. Traversal at constant speed, then, can be done with the following pseudo-code:
  126. .. tabs::
  127. .. code-tab:: gdscript GDScript
  128. var t = 0.0
  129. func _process(delta):
  130. t += delta
  131. position = curve.interpolate_baked(t * curve.get_baked_length(), true)
  132. And the output will, then, move at constant speed:
  133. .. image:: img/bezier_interpolation_baked.gif