This repository was archived by the owner on Dec 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 123
VRageMath.Matrix3x3
Morten Aune Lyrstad edited this page Apr 16, 2022
·
53 revisions
← Index ← Namespace Index
public struct Matrix3x3: IEquatable<Matrix3x3>Defines a matrix.
Namespace: VRageMath
Assembly: VRage.Math.dll
Implements:
| Member | Description |
|---|---|
| static Matrix3x3 Identity | |
| static Matrix3x3 Zero | |
| float M11 | Value at row 1 column 1 of the matrix. |
| float M12 | Value at row 1 column 2 of the matrix. |
| float M13 | Value at row 1 column 3 of the matrix. |
| float M21 | Value at row 2 column 1 of the matrix. |
| float M22 | Value at row 2 column 2 of the matrix. |
| float M23 | Value at row 2 column 3 of the matrix. |
| float M31 | Value at row 3 column 1 of the matrix. |
| float M32 | Value at row 3 column 2 of the matrix. |
| float M33 | Value at row 3 column 3 of the matrix. |
| Member | Description |
|---|---|
| Vector3 Backward { get; set; } | Gets and sets the backward vector of the Matrix3x3. |
| Vector3 Col0 { get; } | |
| Vector3 Col1 { get; } | |
| Vector3 Col2 { get; } | |
| Vector3 Down { get; set; } | Gets and sets the down vector of the Matrix3x3. |
| Vector3 Forward { get; set; } | Gets and sets the forward vector of the Matrix3x3. |
| float Item { get; set; } | |
| Vector3 Left { get; set; } | Gets and sets the left vector of the Matrix3x3. |
| Vector3 Right { get; set; } | Gets and sets the right vector of the Matrix3x3. |
| Vector3 Scale { get; } | |
| Vector3 Up { get; set; } | Gets and sets the up vector of the Matrix3x3. |
| Member | Description |
|---|---|
| Matrix3x3(float, float, float, float, float, float, float, float, float) | |
| Matrix3x3(Matrix3x3) | |
| Matrix3x3(MatrixD) |
Do you have questions, comments, suggestions for improvements? Is there something I can do better? Did I make a mistake? Please add an issue here, and prefix your issue title with Wiki. Thank you, your help will be very appreciated!