Gets rotation matrix (from Orientation). Rotation matrix
()
| 126 | /// </summary> |
| 127 | /// <returns>Rotation matrix</returns> |
| 128 | public Matrix GetRotation() |
| 129 | { |
| 130 | Matrix.RotationQuaternion(ref Orientation, out var result); |
| 131 | return result; |
| 132 | } |
| 133 | |
| 134 | /// <summary> |
| 135 | /// Gets rotation matrix (from Orientation). |
nothing calls this directly
no test coverage detected