Lecture 8: Game Math

Scalars and Vectors

Numerical quantities used in mathematics and physics fall into two broad categories: scalars and vectors.

Scalars are quantities that can be described using a single numerical value which represents its size/magnitude:

Vectors are quantities that carry enough information to represent a direction in space, in addition to a magnitude:

Vectors

Vectors are often visualized as an arrow. However, a vector does not have a specific “start point” - it’s just a direction and magnitude. So two vectors visualized in different places are the same vector.

Vectors are n-dimensional, described by n coordinates or components.

In mathematics we commonly use the following notation for vectors:

But what can we do with vectors?

Sometimes we use , , to describe the individual components of a vector.

Sometimes we’ll use a subscript:

Subscripts will sometimes index from 1 (generally in pure mathematics), though some authors index from 0 to match with common programming conventions.

Vector Operations

Magnitude

We can compute the magnitude, or length, of a vector:

This equation applies similarly in larger dimensions:

Scalar Multiplication

Multiplying a vector by a scalar changes its length, but not its direction.

Addition

Vector additional can be visualized by placing the vectors head-to-tail. The result of vector addition is what you would get if you first travelled along one vector, then the other.

This is a component-wise operation - each component in the result vector is the sum of the related component in each operand vector.

Subtraction

The geometric interpretation of is a vector in the opposite direction.

So, subtraction is not suprising:

Dot Product

There are three ways to multiply vectors together.

There is the obvious way, component-wise multiplication, that looks a lot like vector addition. However, this type of multipication doesn’t have much geometric meaning, and it is not common in mathematics. It is commonly used in games when working with colors, but we’re going to talk about that later.

The other two types of multiplcation are the dot product and the cross product. The cross product is a little complex and only works in 3D, so we’re just going to talk about the dot product today.

The dot product is interesting because unlike our other operations, it does not product a vector - it produces a scalar.

Specifically, for two 2D vectors it produces:

Similarly, in 3D:

The geometric meaning of this product is that it describes the degree to which the two vectors are facing the same direction.

It’s easiest to reason about if we take the dimensions of the vectors out of the question - let’s say we have two vectors of unit length (that is, their magnitude is 1).

If the dot product of these vectors is 1, they are the same vector (pointing the exact same direction). If it’s, say, 0.5, these vectors are generally pointing in the same direction but not quite.

If the dot product is 0, the vectors are orthogonal - they point at right angles to each other. If the dot product is -1, the vectors point in exact opposite directions.

This operation is very useful in the context of games. For example, you can use the dot product to easily check whether one character is looking at another.

Coordinate Systems

Sometimes we want to talk about a specific place in our spaces. We might call this a point, a coordinate, or a position.

If we pick some point in space called the origin that represents in our coordinate system (or however many 0s are necessary to match the number of dimensions), then we can think of the point

as being units away from the origin on the horizontal axis and units away from the origin on the vertical axis.

We could also use the vector

to represent the offset from the origin that we travel along to reach .

As such, even though mathematically and physically vectors and points are two distinctly different things, in common practice we’ll commonly use vectors to represent points as well - especially because a lot of constructs related to vectors work well with points as well.

But back to coordinate systems - we said that is 3 units away from the horizontal axis. What is this axis? Commonly we’ll call it the axis (and the vertical axis is the ), and the choice of these axis is another fundamental piece of the coordinate system.

If we have an origin point along with an axis (sometimes called basis vector) for each dimension, those pieces together form a coordinate system (also sometimes called a coordinate frame).

Transforms

There’s a mathematical bridge between what we just talked about and what we’re going to talk about now, but it involves some linear algebra so we’re going to ignore it in this class (in the interest of time).

With both 2D and 3D objects, there are a number of operations we can perform to move those objects around in space.

The most commonly used are translation, rotation, and scale. You can apply these operations to any object in Unity, and there is a separate “mode” for each one. A fourth, less commonly used operation is shear.

All of these operations are called transforms. Specifically, they are what we call affine transforms, because while they can change a lot about an object, they preserve any parallel lines.

You can see some 2D examples of these transforms here.

An interesting thing about these affine transforms is that they can be represented by something called a matrix. In fact, a matrix can represent both these transforms as well as composite transforms - for example, a translation followed by a rotation. Matrices, like vectors, have dimensions, but it takes a 4x4 matrix to represent all possible affine transforms in 3D. This is really only important to know because often in game engines you will see a mat4 type that is used to represent various transformations.

These mat4s are just 4x4 matrices. If you want to learn more, I suggest taking CSC 471.

Translations and Scales

If we want to talk about translations or scales, we usually just refer to a set of three numbers that describe the amount of translation/scale in each dimension.

A translation of is an identity transform, or a transform that does nothing. Similarly, a scale of is an identity transform.

A translation of will move an object 3 units on the axis, 4 units on , and 5 units on . A scale of will make an object twice as long, the same height, and half as deep.

Rotations

Rotations are not as simple to talk about, however.

If we look at Unity, we can see that we have the option to rotate an object around any of the three axis. Generally speaking, the dimension that doesn’t change when you perform a particular rotation is the axis around which you are rotating.

However, despite the fact that we can think about rotations in three axis, it’s not great to store them this way. A group of three numbers that describe rotations applied around three axis in sequence is called Euler angles. But they have some limitations that can be difficult to describe - so we’ll have an in-class demo.

How else can we represent a rotation?

Complex Numbers

Let’s take a look at complex numbers:

is a real number.

is an imaginary number.

It has some interesting rules:

So we can multiply two complex numbers following the rules of algebra:

We can also write this:

Alright, what else can we do with complex numbers? We can plot them in 2D.

complex-number

Doing so shows us a few interesting aspects of complex numbers:

What if we multiply by any other unit-length complex number?

This gives us the result of rotating the vector degrees around the origin. It makes sense because:

, or a rotation of 90 degrees.

, or a rotation of 180 degrees.

, or a rotation of 0 degrees.

What about 3D?

This is rotation around a single axis, and we need two numbers to do it - a real and imaginary part.

We also use unit-length complex numbers, not just all of them.

To represent a 3D rotation, with is around three axis, we need four numbers to do it - a real and three imaginary parts.

Euler’s rotation theorem tells us that we can represent any arbitrary rotation in 3D as a rotation around a single axis by a given rotation .

So we need exactly four numbers to describe an arbitrary rotation.

The number system with one real axis and one imaginary axis is the complex numbers.

The number system with one real axis and three imaginary axis is called quaternions. Yes, this is a four dimensional coordinate system and thus complicated to think about and attempt to visualize. What’s important to know is that quaternions are a mathematically convenient way to store rotations, so most game engines use them to represent rotations.

Unity uses a quaternion to store the rotation of every object, but also has a way to access that same rotation in Euler angle form.