[]
Gets or sets the component at the specified index.
public float this[int index] { get; set; }
| Type | Name | Description |
|---|---|---|
| int | index | The zero-based index of the component to access. |
| Type | Description |
|---|---|
| float | The value of the Matrix5x4 component, depending on the index. |
| Type | Condition |
|---|---|
| ArgumentOutOfRangeException | Thrown when the |
Gets or sets the component at the specified index.
public float this[int row, int column] { get; set; }
| Type | Name | Description |
|---|---|---|
| int | row | The row of the Matrix5x4 to access. |
| int | column | The column of the Matrix5x4 to access. |
| Type | Description |
|---|---|
| float | The value of the Matrix5x4 component, depending on the index. |
| Type | Condition |
|---|---|
| ArgumentOutOfRangeException | Thrown when the |