Category: Maths
-
Inverse Kinematics in 2D – Part 1
If you have been following this blog for a while, you might have noticed some recurring themes. Inverse Kinematics is definitely one them, and I have dedicated an entire series on how to apply it to robotic arms and tentacles. If you have not read them, do not fear: this new series will be self-contained,…
-
Atmospheric Scattering Shader
This tutorial finally concludes our journey to simulate Rayleigh Scattering for a planet’s atmosphere. The next (and final) part will show how to change the shader to also include an additional type of scattering, known as Mie Scattering. You can find all the post in this series here: You can download the Unity package for…
-
A Journey Through the Atmosphere
—
This post describes how to model the density of the atmosphere at different altitude. This is a critical step, since the atmospheric density is one of the parameters necessary to correctly calculate the Rayleigh scattering. You can find all the post in this series here: You can download the Unity package for this tutorial at…
-
The Mathematics of Rayleigh Scattering
This post introduces the Mathematics of Rayleigh Scattering, which is the optical phenomenon that causes the sky to appear blue. The equations derived in this tutorial will be translated into shader code in the next tutorial. You can find all the post in this series here: You can download the Unity package for this tutorial…
-
The Theory Behind Atmospheric Scattering
This is the second part of the tutorial on volumetric atmospheric scattering. In this post we will start deriving the equations that govern this complex, yet beautiful optical phenomenon. You can find all the post in this series here: You can download the Unity package for this tutorial at the bottom of the page.
-
Intersecting The Atmosphere
You can find all the post in this series here: You can download the Unity package for this tutorial at the bottom of the page.
-
An Introduction to Gradient Descent
This post concludes the theoretical introduction to Inverse Kinematics, providing a programmatical solution based on gradient descent. This article does not aim to be a comprehensive guide on the topic, but a gentle introduction. The next post, Inverse Kinematics for Robotic Arms, will show an actual C# implementation of this algorithm in with Unity. The other post in this…