[]
        
(Showing Draft Content)

C1.Util.DX.Matrix5x4.Item

this Property

this[int]

Gets or sets the component at the specified index.

Declaration
public float this[int index] { get; set; }
Parameters
Type Name Description
int index

The zero-based index of the component to access.

Property Value
Type Description
float

The value of the Matrix5x4 component, depending on the index.

Exceptions
Type Condition
ArgumentOutOfRangeException

Thrown when the index is out of the range [0, 15].

this[int, int]

Gets or sets the component at the specified index.

Declaration
public float this[int row, int column] { get; set; }
Parameters
Type Name Description
int row

The row of the Matrix5x4 to access.

int column

The column of the Matrix5x4 to access.

Property Value
Type Description
float

The value of the Matrix5x4 component, depending on the index.

Exceptions
Type Condition
ArgumentOutOfRangeException

Thrown when the row or columnis out of the range [0, 3].