Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Game Physics Cookbook
Game Physics Cookbook

Game Physics Cookbook: Discover over 100 easy-to-follow recipes to help you implement efficient game physics and collision detection in your games

Arrow left icon
Profile Icon Gabor Szauer
Arrow right icon
NZ$14.99 NZ$51.99
Full star icon Full star icon Full star icon Full star icon Half star icon 4.3 (4 Ratings)
eBook Mar 2017 480 pages 1st Edition
eBook
NZ$14.99 NZ$51.99
Paperback
NZ$64.99
Subscription
Free Trial
Arrow left icon
Profile Icon Gabor Szauer
Arrow right icon
NZ$14.99 NZ$51.99
Full star icon Full star icon Full star icon Full star icon Half star icon 4.3 (4 Ratings)
eBook Mar 2017 480 pages 1st Edition
eBook
NZ$14.99 NZ$51.99
Paperback
NZ$64.99
Subscription
Free Trial
eBook
NZ$14.99 NZ$51.99
Paperback
NZ$64.99
Subscription
Free Trial

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

Game Physics Cookbook

Chapter 2. Matrices

In this chapter, we will cover the basic math needed to multiply and invert matrices:

  • Definition
  • Transpose
  • Multiplication
  • Identity matrix
  • Determinant of a 2x2 matrix
  • Matrix of minors
  • Matrix of cofactors
  • Determinant of a 3x3 matrix
  • Operations of a 4x4 matrix
  • Adjugate matrix
  • Matrix inverse

Introduction

Matrices in games are used extensively. In the context of physics, matrices are used to represent different coordinate spaces. In games, we often combine coordinate spaces; this is done through matrix multiplication. In game physics, it's useful to move one object into the coordinate space of another object; this requires matrices to be inverted. In order to invert a matrix, we have to find its minor, determinant, cofactor, and adjugate. This chapter focuses on what is needed to multiply and invert matrices.

Note

Every formula in this chapter is followed by some practical examples. If you find yourself needing additional examples, Purplemath is a great resource; look under the Advanced Algebra Topic section: www.purplemath.com/modules

Matrix definition

A matrix is a Matrix definition grid of numbers, represented by a bold capital letter. The number of rows in a matrix is represented by i; the number of columns is represented by j.

For example, in a 3 X 2 matrix, i would be 3 and j would be 2. This 3 X 2 matrix looks like this:

Matrix definition

Matrices can be of any dimension; in video games, we tend to use 2 X 2, 3 X 3, and 4 X 4 matrices. If a matrix has the same number of rows and columns, it is called a square matrix. In this book, we're going to be working mostly with square matrices.

Individual elements of the matrix are indexed with subscripts. For example, Matrix definitionrefers to the element in row 1, column 2 of the matrix M.

Getting ready

We are going to implement a 2 X 2, 3 X 3, and 4 X 4 matrix. Internally, each matrix will be represented as a linear array of memory. Much like vectors, we will use an anonymous union to support a variety of access patterns. Pay attention to how the indexing operator is overridden, matrix indices in code start at 0, not...

Transpose

The transpose of matrix M, written as Transpose is a matrix in which every element i, j equals the element j, i of the original matrix. The transpose of a matrix can be acquired by reflecting the matrix over its main diagonal, writing the rows of M as the columns of Transpose, or by writing the columns of M as the rows of Transpose. We can express the transpose for each component of a matrix with the following equation:

Transpose

The transpose operation replaces the rows of a matrix with its columns:

Transpose Transpose

Getting ready

We're going to create a non-nested loop that serves as a generic Transpose function. This function will be able to transpose matrices of any dimension. We're then going to create Transpose functions specific to 2 X 2, 3 X 3, and 4 X 4 matrices. These more specific functions are going to call the generic Transpose with the appropriate arguments.

How to do it…

Follow these steps to implement a generic transpose function and transpose functions for two, three and four dimensional square...

Multiplication

Like a vector, there are many ways to multiply a matrix. In this chapter we will cover multiplying matrices by a scalar or by another matrix. Scalar multiplication is component wise. Given a Multiplication matrix M and a scalar s, scalar multiplication is defined as follows:

Multiplication

We can also multiply a matrix by another matrix. Two matrices, A and B, can be multiplied together only if the number of columns in A matches the number of rows in B. That is, two matrices can only be multiplied together if their inner dimensions match.

When multiplying two matrices together, the dimension of the resulting matrix will match the outer dimensions of the matrices being multiplied. If A is an Multiplication matrix and B is an Multiplication matrix, the product of AB will be an Multiplication matrix. We can find each element of the matrix AB with the following formula:

Multiplication

This operation concatenates the transformations represented by the two matrices into one matrix. Matrix multiplication is not cumulative. Multiplication. However, matrix multiplication is associative...

Identity matrix

Multiplying a scalar number by 1 will result in the original scalar number. There is a matrix analogue to this, the identity matrix. The identity matrix is commonly written as I. If a matrix is multiplied by the identity matrix, the result is the original matrix Identity matrix.

In the identity matrix, all non-diagonal elements are 0, while all diagonal elements are one Identity matrix. The identity matrix looks like this:

Identity matrix

Getting ready

Because the identity matrix has no effect on multiplication, by convention it is the default value for all matrices. We're going to add two constructors to every matrix struct. One of the constructors is going to take no arguments; this will create an identity matrix. The other constructor will take one float for every element of the matrix and assign every element inside the matrix. Both constructors are going to be inline.

How to do it…

Follow these steps to add both a default and overloaded constructors to matrices:

  1. Add the default inline constructor to the mat2...

Determinant of a 2x2 matrix

Determinants are useful for solving systems of linear equations; however, in the context of a 3D physics engine, we use them almost exclusively to find the inverse of a matrix. The determinant of a matrix M is a scalar value, it's denoted as Determinant of a 2x2 matrix.The determinant of a matrix is the same as the determinant of its transpose Determinant of a 2x2 matrix.

We can use a shortcut to find the determinant of a 2 X 2 matrix; subtract the product of the diagonals. This is actually the manually expanded form of Laplace Expansion; we will cover the proper formula in detail later:

Determinant of a 2x2 matrix

One interesting property of determinants is that the determinant of the inverse of a matrix is the same as the inverse determinant of that matrix:

Determinant of a 2x2 matrix

Finding the determinant of a 2 X 2 matrix is fairly straightforward, as we have already expanded the formula. We're just going to implement this in code.

How to do it…

Follow these steps to implement a function which returns the determinant of a 2 X 2 matrix:

  1. Add the declaration...

Introduction


Matrices in games are used extensively. In the context of physics, matrices are used to represent different coordinate spaces. In games, we often combine coordinate spaces; this is done through matrix multiplication. In game physics, it's useful to move one object into the coordinate space of another object; this requires matrices to be inverted. In order to invert a matrix, we have to find its minor, determinant, cofactor, and adjugate. This chapter focuses on what is needed to multiply and invert matrices.

Note

Every formula in this chapter is followed by some practical examples. If you find yourself needing additional examples, Purplemath is a great resource; look under the Advanced Algebra Topic section: www.purplemath.com/modules

Matrix definition


A matrix is a grid of numbers, represented by a bold capital letter. The number of rows in a matrix is represented by i; the number of columns is represented by j.

For example, in a 3 X 2 matrix, i would be 3 and j would be 2. This 3 X 2 matrix looks like this:

Matrices can be of any dimension; in video games, we tend to use 2 X 2, 3 X 3, and 4 X 4 matrices. If a matrix has the same number of rows and columns, it is called a square matrix. In this book, we're going to be working mostly with square matrices.

Individual elements of the matrix are indexed with subscripts. For example, refers to the element in row 1, column 2 of the matrix M.

Getting ready

We are going to implement a 2 X 2, 3 X 3, and 4 X 4 matrix. Internally, each matrix will be represented as a linear array of memory. Much like vectors, we will use an anonymous union to support a variety of access patterns. Pay attention to how the indexing operator is overridden, matrix indices in code start at 0, not 1. This...

Transpose


The transpose of matrix M, written as is a matrix in which every element i, j equals the element j, i of the original matrix. The transpose of a matrix can be acquired by reflecting the matrix over its main diagonal, writing the rows of M as the columns of , or by writing the columns of M as the rows of . We can express the transpose for each component of a matrix with the following equation:

The transpose operation replaces the rows of a matrix with its columns:

Getting ready

We're going to create a non-nested loop that serves as a generic Transpose function. This function will be able to transpose matrices of any dimension. We're then going to create Transpose functions specific to 2 X 2, 3 X 3, and 4 X 4 matrices. These more specific functions are going to call the generic Transpose with the appropriate arguments.

How to do it…

Follow these steps to implement a generic transpose function and transpose functions for two, three and four dimensional square matrices:

  1. Add...

Multiplication


Like a vector, there are many ways to multiply a matrix. In this chapter we will cover multiplying matrices by a scalar or by another matrix. Scalar multiplication is component wise. Given a matrix M and a scalar s, scalar multiplication is defined as follows:

We can also multiply a matrix by another matrix. Two matrices, A and B, can be multiplied together only if the number of columns in A matches the number of rows in B. That is, two matrices can only be multiplied together if their inner dimensions match.

When multiplying two matrices together, the dimension of the resulting matrix will match the outer dimensions of the matrices being multiplied. If A is an matrix and B is an matrix, the product of AB will be an matrix. We can find each element of the matrix AB with the following formula:

This operation concatenates the transformations represented by the two matrices into one matrix. Matrix multiplication is not cumulative. . However, matrix multiplication is associative...

Identity matrix


Multiplying a scalar number by 1 will result in the original scalar number. There is a matrix analogue to this, the identity matrix. The identity matrix is commonly written as I. If a matrix is multiplied by the identity matrix, the result is the original matrix .

In the identity matrix, all non-diagonal elements are 0, while all diagonal elements are one . The identity matrix looks like this:

Getting ready

Because the identity matrix has no effect on multiplication, by convention it is the default value for all matrices. We're going to add two constructors to every matrix struct. One of the constructors is going to take no arguments; this will create an identity matrix. The other constructor will take one float for every element of the matrix and assign every element inside the matrix. Both constructors are going to be inline.

How to do it…

Follow these steps to add both a default and overloaded constructors to matrices:

  1. Add the default inline constructor to the mat2 struct:

    inline...

Determinant of a 2x2 matrix


Determinants are useful for solving systems of linear equations; however, in the context of a 3D physics engine, we use them almost exclusively to find the inverse of a matrix. The determinant of a matrix M is a scalar value, it's denoted as .The determinant of a matrix is the same as the determinant of its transpose .

We can use a shortcut to find the determinant of a 2 X 2 matrix; subtract the product of the diagonals. This is actually the manually expanded form of Laplace Expansion; we will cover the proper formula in detail later:

One interesting property of determinants is that the determinant of the inverse of a matrix is the same as the inverse determinant of that matrix:

Finding the determinant of a 2 X 2 matrix is fairly straightforward, as we have already expanded the formula. We're just going to implement this in code.

How to do it…

Follow these steps to implement a function which returns the determinant of a 2 X 2 matrix:

  1. Add the declaration for the determinant...

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Get a comprehensive coverage of techniques to create high performance collision detection in games
  • Learn the core mathematics concepts and physics involved in depicting collision detection for your games
  • Get a hands-on experience of building a rigid body physics engine

Description

Physics is really important for game programmers who want to add realism and functionality to their games. Collision detection in particular is a problem that affects all game developers, regardless of the platform, engine, or toolkit they use. This book will teach you the concepts and formulas behind collision detection. You will also be taught how to build a simple physics engine, where Rigid Body physics is the main focus, and learn about intersection algorithms for primitive shapes. You’ll begin by building a strong foundation in mathematics that will be used throughout the book. We’ll guide you through implementing 2D and 3D primitives and show you how to perform effective collision tests for them. We then pivot to one of the harder areas of game development—collision detection and resolution. Further on, you will learn what a Physics engine is, how to set up a game window, and how to implement rendering. We’ll explore advanced physics topics such as constraint solving. You’ll also find out how to implement a rudimentary physics engine, which you can use to build an Angry Birds type of game or a more advanced game. By the end of the book, you will have implemented all primitive and some advanced collision tests, and you will be able to read on geometry and linear Algebra formulas to take forward to your own games!

Who is this book for?

This book is for beginner to intermediate game developers. You don’t need to have a formal education in games—you can be a hobbyist or indie developer who started making games with Unity 3D.

What you will learn

  • Implement fundamental maths so you can develop solid game physics
  • Use matrices to encode linear transformations
  • Know how to check geometric primitives for collisions
  • Build a Physics engine that can create realistic rigid body behavior
  • Understand advanced techniques, including the Separating Axis Theorem
  • Create physically accurate collision reactions
  • Explore spatial partitioning as an acceleration structure for collisions
  • Resolve rigid body collisions between primitive shapes

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Mar 24, 2017
Length: 480 pages
Edition : 1st
Language : English
ISBN-13 : 9781787120815
Vendor :
Unity Technologies
Languages :
Concepts :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : Mar 24, 2017
Length: 480 pages
Edition : 1st
Language : English
ISBN-13 : 9781787120815
Vendor :
Unity Technologies
Languages :
Concepts :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just NZ$7 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just NZ$7 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total NZ$ 217.97
Game Physics Cookbook
NZ$64.99
Game Development Patterns and Best Practices
NZ$71.99
Practical Game AI Programming
NZ$80.99
Total NZ$ 217.97 Stars icon
Banner background image

Table of Contents

18 Chapters
1. Vectors Chevron down icon Chevron up icon
2. Matrices Chevron down icon Chevron up icon
3. Matrix Transformations Chevron down icon Chevron up icon
4. 2D Primitive Shapes Chevron down icon Chevron up icon
5. 2D Collisions Chevron down icon Chevron up icon
6. 2D Optimizations Chevron down icon Chevron up icon
7. 3D Primitive Shapes Chevron down icon Chevron up icon
8. 3D Point Tests Chevron down icon Chevron up icon
9. 3D Shape Intersections Chevron down icon Chevron up icon
10. 3D Line Intersections Chevron down icon Chevron up icon
11. Triangles and Meshes Chevron down icon Chevron up icon
12. Models and Scenes Chevron down icon Chevron up icon
13. Camera and Frustum Chevron down icon Chevron up icon
14. Constraint Solving Chevron down icon Chevron up icon
15. Manifolds and Impulses Chevron down icon Chevron up icon
16. Springs and Joints Chevron down icon Chevron up icon
A. Advanced Topics Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Full star icon Full star icon Half star icon 4.3
(4 Ratings)
5 star 50%
4 star 25%
3 star 25%
2 star 0%
1 star 0%
Billy Feb 26, 2019
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Good book.Now I can build my flight simulator
Amazon Verified review Amazon
Jonathan Jul 22, 2017
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This is is a great book. They say you can’t judge a book by its cover. I say you can judge it by its source code. I bought two other game physics books and this is the only one I successfully converted to C for Mac while reading through it. I searched Google for game physics source code and found this book’s source code on GitHub. I learned the hard way that if you can’t download the source code and the code in the book is not complete don’t buy it! The only thing I would change is to get rid of the 2D chapters and replace them with terrain and plane collision response recipes later on. Also, there are a ton of typos in the recipe descriptions, but the book’s formulas and code worked fine. And I always had the GiHub source code download to refer back to. Note that in the book it mostly explains how to get the physics working and not the OpenGL graphics. However, the GitHub download should have working OpenGL code. If you are looking for a good game physics book, Game Physics Cookbook is the one to buy.
Amazon Verified review Amazon
Persnickety Sep 26, 2017
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
If you are new to computer physics programming then this is a must have book. It keeps things simple and direct. Explanations are well done and the math is kept simple. I combined this with the "real time collision detection" book and feel like I have a good grounding in the 3d game physics area. Both books tend to focus on basic shapes and their interactions but also give plenty of good info on using those basic shapes to build more sophisticated physical interactions. Where this books falls short is in the 2D area, and this is the reason I took away 1/2 star. In one place the 2D code uses a point slope form of the line to compute an intersection and introduces a divide by zero error directly in the code. The other 1/2 star is taken away due to numerous coding errors and inconsistencies throughout the text. Also the errata for the book is practically nil.But don't let that put you off: the book is an excellent intro to physics programming in general.
Amazon Verified review Amazon
John Hague Dec 14, 2020
Full star icon Full star icon Full star icon Empty star icon Empty star icon 3
Whilst this book provides a useful revision for game industry techniques, this edition cannot be recommended to new starters in the field. This is because this edition is packed with typos and mistakes in both text and code snippets. You must use the GitHub code in conjunction to review and iron out these mistakes: which is a disappointing lack of attention to detail before the book went to press.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.