Post

Basics of Trigonometry - Sine & Cosine

Trigonometry is a fundamental branch of mathematics that is crucial for many fields, including game programming. When it comes to game development, understanding trigonometric functions such as sine (\(sin\)) and cosine (\(cos\)) is essential for various tasks, from character movement to physics simulations.

In this post, we will take a look at the basics of trigonometry, including the definitions of sine and cosine, and how to use them to place and move objects All using just \(\sin\) and \(\cos\)!

At the end, you will be able to:

  • Understand the basics of trigonometry.
  • Place and move objects using sine and cosine.

A Geometric Interpretation of Sine and Cosine

Pythagorean Theorem

Pythagorean Theorem

Before we start discussing the \(\sin\) and \(\cos\) functions, it’s useful to understand the Pythagorean Theorem. This theorem relates the lengths of the sides of a right triangle. It states that the square of the hypotenuse (the side opposite the right angle) is equal to the sum of the squares of the other two sides. \(a^2 + b^2 = c^2\)

With a strong bases on the theorem, we can get a better understanding of the relationship between the angle \(\theta\) and the sides of a right triangle.

Sine and Cosine

SohCah

The sine and cosine functions are defined as the ratios of the sides of a right triangle. In trigonometry, an angle is often represented by the Greek letter \(\theta\) (theta). When we talk about the sine and cosine functions, we refer to the angles within a right triangle.

In a right triangle, the sine of an angle \(\theta\) is the ratio of the length of the side opposite that angle to the length of the hypotenuse. The cosine of an angle \(\theta\) is the ratio of the length of the side adjacent to that angle to the length of the hypotenuse.

\[\begin{align} \sin(\theta) &= \frac{\text{opposite}}{\text{hypotenuse}} \\ \cos(\theta) &= \frac{\text{adjacent}}{\text{hypotenuse}} \end{align}\]

Identities

It’s also important to know the existence of trigonometric identities. They are equalities that involve trigonometric functions and are true for every value of the occurring variables. The most basic trigonometric identities are the Pythagorean identities, which are derived from the Pythagorean Theorem. Some of them are:

\[\begin{align} \sin^2(\theta) + \cos^2(\theta) &= 1 \\ \sin(\theta) &= \cos(\frac{\pi}{2} - \theta) \\ \cos(\theta) &= \sin(\frac{\pi}{2} - \theta) \end{align}\]

They may be not so useful for game development, but they are important to know. They can be used to simplify expressions involving trigonometric functions, helping you to avoid unnecessary calculations or to find the value of an unknown trigonometric function.

You can check the Wikipedia page for identities involving trigonometric functions.

Unit Circle

A great way to visualize the relationship between the angle \(\theta\) and the coordinates of the point \((x, y)\) is to use a unit circle. The following image shows a unit circle. A unit circle is a circle with a radius of 1 unit and a center at the origin (0, 0).

Unit Circle

Unit Circle

If we place a point on the unit circle and draw a line from the origin to that point, we can see that the line forms an angle \(\theta\) with the positive x-axis.

We’ve discovered a relationship between the angle \(\theta\) and the coordinates of the point \((x, y)\) on the unit circle!

The coordinates of the point \(P\) on the unit circle are equal to the cosine and sine of the angle \(\theta\), respectively.

\[P = (x, y) = (\cos(\theta), \sin(\theta))\]

The interactive unit circle above also plots the result of \(\sin\) and \(\cos\) for a given angle \(\theta\). This is a great way to visualize the relationship, but also to understand the behavior of \(\sin\) and \(\cos\). They are periodic functions, which means that they repeat themselves after a certain interval. In this case, the interval is \(2\pi\) (\(\tau\)), with a range of \([-1, 1]\).

Degrees, Radians and Turns

There’s some ways to measure angles. The most common ones are degrees, Radians and turns. The following table shows the conversion between these units:

DegreesRadiansTurns
\(0^{\circ}\)00
\(30^{\circ}\)\(\frac{\pi}{6}\)\(\frac{1}{12}\)
\(45^{\circ}\)\(\frac{\pi}{4}\)\(\frac{1}{8}\)
\(60^{\circ}\)\(\frac{\pi}{3}\)\(\frac{1}{6}\)
\(90^{\circ}\)\(\frac{\pi}{2}\)\(\frac{1}{4}\)
\(180^{\circ}\)\(\pi\)\(\frac{1}{2}\)
\(270^{\circ}\)\(\frac{3\pi}{2}\)\(\frac{3}{4}\)
\(360^{\circ}\)\(2\pi\)1

The symbol \(\tau\) (Tau) are commonly used to represent \(2\pi\).

There are more ways to measure angles, such as gradians, mils and binary degrees. You can check the Wikipedia page for more information.

Radians vs Degrees

Degrees is easy to understand, since it’s intuitive for us, humans. However, if we compute using degrees, first the whole circumference is calculated, and then it’s multiplied by the fraction of the angle. This is not efficient, since we are calculating the whole circumference when we only need a fraction of it. This is why radians are used in programming.

For examplte, let’s say that we want to calculate the arc length of a circle with radius 2 and angle 45 degrees. Using degrees, we would have:

\[\begin{align} arc &= radius \times 2\pi \times \frac{45^{\circ}}{360^{\circ}} \\ &= 2 \times 2\pi \times \frac{1}{8} \\ &= \frac{\pi}{2} \end{align}\]

But when using radians, we can calculate the arc length directly:

\[\begin{align} arc &= radius \times \frac{\pi}{4} \\ &= 2 \times \frac{\pi}{4} \\ &= \frac{\pi}{2} \end{align}\]

Convertions

To convert between the representations, we can check at the below table:

 DegreesRadiansTurns
Degrees-\(\theta_{rad} = \theta_{deg} \times \frac{\pi}{180}\)\(\theta_{turn} = \theta_{deg} \times \frac{1}{360}\)
Radians\(\theta_{deg} = \theta_{rad} \times \frac{180}{\pi}\)-\(\theta_{turn} = \theta_{rad} \times \frac{1}{2\pi}\)
Turns\(\theta_{deg} = \theta_{turn} \times 360\)\(\theta_{rad} = \theta_{turn} \times 2\pi\)-

When to use each one?

When it comes to programming, radians are the preferred unit. This is because the trigonometric functions in most programming languages use radians as input, as it’s more efficient to compute. You must verify the documentation of the framework you are using to check which unit is used by the trigonometric functions by default.

For example, in Unity, the trigonometric functions use Radians as input. So, if you want to calculate the sine of \(90^{\circ}\), you must convert it to Radians first:

1
2
3
4
5
float angle = 90F;
float radians = angle * Mathf.PI / 180F;
// Alternatively, you can use the Deg2Rad constant:
// float radians = angle * Mathf.Deg2Rad;
float sine = Mathf.Sin(radians);

In Unreal Engine:

1
2
float angle = 90.0F;
FMath::Cos(FMath::DegreesToRadians(angle));

In Godot:

1
2
3
var angle = 90.0
var radians = angle * PI / 180.0
var sine = sin(radians)

A word of caution

Representation

Be aware of the representation. For example, \(90^{\circ}\) is not the same as \(90\) radians. If you perform the conversion (presented in the section above), you will see that the first one is equal to \(\frac{\pi}{2}\) radians, while the second one is equal to \(5156.62^{\circ}\)! Also, be careful when interpreting the representations. \(\sin(90^{\circ})\) is not the same as \(\sin(90)\)!

In your further studies, you will see some representations skipping the parenthesis, such as \(\sin 90^{\circ}\) or \(\sin 90\). This is a common practice, but it can lead to confusion. So, be careful when interpreting those representations.

Placement and Movement

Now that we know the basics of trigonometry, we can use it to place and move objects space. Isn’t that neat? Let’s see how we can do that!

Placement

If we want to place an object at a specific angle, we can use sine and cosine to calculate the x and y coordinates of the object. The following code snippet shows how to place an object at a specific angle using sine and cosine:

1
2
3
4
5
6
7
8
9
public void Place()
{
    // Set position of object
    transform.localPosition = new Vector3(
        Mathf.Cos(angle * Mathf.Deg2Rad) * radius,
        Mathf.Sin(angle * Mathf.Deg2Rad) * radius,
        0F
    );
}

If we want to place a list of objects across a circle, we can use the following code snippet:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public void PlaceInCirclePath()
{
    // The angle between each object.
    float angle = 360F / objects.Count;
    // The current angle.
    float currentAngle = 0F;

    foreach (GameObject obj in objects)
    {
        float x = radius * Mathf.Cos(currentAngle);
        float y = radius * Mathf.Sin(currentAngle);
        obj.transform.position = new Vector3(x, y, 0f);
        currentAngle += angle;
    }
}

Circular motion

To make an object move in a circular path, we can also use sine and cosine functions not to only place the object, but also to move it. We just need to increase the angle of each object over time. The following code snippet shows how to move an object in a circular path using sine and cosine.


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
private void Update()
{
    // base angle
    var baseAngle = Time.time * speed;
    for (int i = 0; i < numPoints; i++)
    {
        // get point
        var point = points[i];

        // set position
        var pointAngle = baseAngle + i * Mathf.PI * 2 / numPoints;
        var x = Mathf.Cos(pointAngle) * radius;
        var y = Mathf.Sin(pointAngle) * radius;
        
        point.transform.localPosition = new Vector3(x, y, 0F);
    }
}

The following gif shows the result of the above code snippet:

Placement

Floating motion

If we want to move an object in a floating motion way, we can use \(\sin(\theta)\) to calculate the y coordinate of the object. The following code snippet shows how to move an object in a hovering motion using sine:

1
2
3
4
5
6
void Update()
{
    angle += speed * Time.deltaTime;
    float y = amplitude * Mathf.Sin(angle);
    transform.position = new Vector3(0f, y);
}   

Pendulum motion

Pendulum

The logic behind this motion simulation involves defining the pendulum’s starting position using an angle in degrees and setting a range for how far it swings from the center.



Take a look at the following code snippet:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Pendulum angle in degrees (center position)
public float centerAngle = 270F;
// Angle range for the pendulum swing
public float angleRange = 45F;

private void Update()
{
    // Convert the angles to radians
    float centerRad = centerAngle * Mathf.Deg2Rad;
    float rangeRad = angleRange * Mathf.Deg2Rad;

    // Calculate the current angle of the pendulum
    float currentRad = centerRad + rangeRad * Mathf.Cos(speed * Time.time);

    // Calculate the new position of the pendulum
    Vector3 newPos = new Vector3(
        Mathf.Cos(currentRad) * radius,
        Mathf.Sin(currentRad) * radius,
        0F
    );

    // Set the new position of the pendulum
    transform.position = newPos;
}

Spiral motion

For a spiral motion, we can use the exactly circular motion logic, with an addition of a linear increase on the Z coordinate.

The following code snippet shows exactly how to do that:

1
2
3
4
5
6
7
8
9
10
11
private void Update()
{
    float angle = speed * Time.time;
    float zPos = zSpeed * Time.time;

    point.localPosition = new Vector3(
        Mathf.Cos(angle) * radius,
        Mathf.Sin(angle) * radius,
        zPos
    );
}

The final result is shown in the animation below:

Spiral motion

Conclusion

That’s it! We learned the basics of trigonometry and how to use it to place and move objects in space. We also learned how to convert between degrees, radians, and turns. I hope you enjoyed this post and learned something new today!

This post is licensed under CC BY 4.0 by the author.