Struct Matrix2x2Array

Matrix2x2Array structure

Wraps an encoded ArraySegment and exposes it as an IList.

public struct Matrix2x2Array : IList<Matrix3x2>, IReadOnlyList<Matrix3x2>

Constructors

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

Properties

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

Methods

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

Remarks

Vector namespace doesn’t support a 2x2 matrix, so the array is decoded as a Matrix2x2 matrix internally, but exposed as a Matrix3x2.

See Also