fix typo for matrix

This commit is contained in:
NaniteFactory 2018-09-05 12:53:25 +09:00 committed by GitHub
parent a9fc26f261
commit 7e0ff9ab36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -310,7 +310,7 @@ func (r Rect) Intersect(s Rect) Rect {
return t
}
// Matrix is a 3x2 affine matrix that can be used for all kinds of spatial transforms, such
// Matrix is a 2x3 affine matrix that can be used for all kinds of spatial transforms, such
// as movement, scaling and rotations.
//
// Matrix has a handful of useful methods, each of which adds a transformation to the matrix. For