<!--
{
  "availability" : [
    "iOS: 5.0.0 -",
    "iPadOS: 5.0.0 -",
    "macOS: 10.8.0 -",
    "tvOS: 9.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "GLKit",
  "identifier" : "/documentation/GLKit/GLKMatrix3",
  "metadataVersion" : "0.1.0",
  "role" : "Type Alias",
  "symbol" : {
    "kind" : "Type Alias",
    "modules" : [
      "GLKit"
    ],
    "preciseIdentifier" : "c:@T@GLKMatrix3"
  },
  "title" : "GLKMatrix3"
}
-->

# GLKMatrix3

A `3x3` matrix stored in column-major order.

```
typealias GLKMatrix3 = _GLKMatrix3
```

## Discussion

### Fields

|Name |Description                                                            |
|-----|-----------------------------------------------------------------------|
|`m`  |A one-dimensional array of the matrix’s elements in column-major order.|
|`m00`|The `[0,0]` element of the matrix.                                     |
|`m01`|The `[0,1]` element of the matrix.                                     |
|`m02`|The `[0,2]` element of the matrix.                                     |
|`m10`|The `[1,0]` element of the matrix.                                     |
|`m11`|The `[1,1]` element of the matrix.                                     |
|`m12`|The `[1,2]` element of the matrix.                                     |
|`m20`|The `[2,0]` element of the matrix.                                     |
|`m21`|The `[2,1]` element of the matrix.                                     |
|`m22`|The `[2,2]` element of the matrix.                                     |

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)