Struct Matrix3x3Array

Matrix3x3Array structure

Wraps an encoded ArraySegment and exposes it as an IList.

public struct Matrix3x3Array : IList<Matrix4x4>, IReadOnlyList<Matrix4x4>

Constructors

NameDescription
Matrix3x3Array(ArraySegment<byte>, int, EncodingType, bool)
Matrix3x3Array(ArraySegment<byte>, int, int, int, EncodingType, bool)

Properties

NameDescription
Count { get; }
Item { get; set; }

Methods

NameDescription
Contains(Matrix4x4)
CopyTo(Matrix4x4[], int)
Fill(IEnumerable<Matrix4x4>, int)
GetEnumerator()
IndexOf(Matrix4x4)

Remarks

Vector namespace doesn’t support a 3x3 matrix, so the array is decoded as a Matrix3x3 matrix internally, but exposed as a Matrix4x4.

See Also