This commit is contained in:
faiface 2017-03-14 16:19:58 +01:00
parent b3e5e9f902
commit be276888f6
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ func (r Rect) Contains(u Vec) bool {
// vertically and then rotates everything by 90 degrees around the origin.
type Matrix [9]float64
// IM stands for Zero-Matrix which is the identity matrix. Does nothing, no transformation.
// IM stands for identity matrix. Does nothing, no transformation.
var IM = Matrix(mgl64.Ident3())
// Moved moves everything by the delta vector.