Updated 100-spline.md: Added a video about splines (#5930)
* Added a video about splines Co-authored-by: dsh <daniel.s.holdsworth@gmail.com>pull/5916/head^2
parent
08b1b48b5e
commit
045bab002a
1 changed files with 5 additions and 1 deletions
@ -1,3 +1,7 @@ |
||||
# Spline |
||||
|
||||
`Spline` is a mathematical function widely used in computer graphics for generating curves and surfaces. It connects two or more points through a smooth curve, often used in games for defining pathways, movement paths, object shapes, and flow control. Splines are not confined to two dimensions and can be extended to 3D or higher dimensions. Types of splines include `Linear`, `Cubic`, and `Bezier` splines. While linear splines generate straight lines between points, cubic and bezier splines provide more control and complexity with the addition of control points and handles. Developing a good understanding of splines and their usage can vastly improve the fluidity and visual aesthetics of a game. |
||||
`Spline` is a mathematical function widely used in computer graphics for generating curves and surfaces. It connects two or more points through a smooth curve, often used in games for defining pathways, movement paths, object shapes, and flow control. Splines are not confined to two dimensions and can be extended to 3D or higher dimensions. Types of splines include `Linear`, `Cubic`, and `Bezier` splines. While linear splines generate straight lines between points, cubic and bezier splines provide more control and complexity with the addition of control points and handles. Developing a good understanding of splines and their usage can vastly improve the fluidity and visual aesthetics of a game. |
||||
|
||||
Learn more from the following resources: |
||||
|
||||
- [@Video@ In-depth video about Splines by Freya Holmér](https://youtu.be/jvPPXbo87ds?si=JX_G-gS81tOwQwjf) |
||||
|
Loading…
Reference in new issue