Matrix4x4.SetRow
SetRow(i: int, v: Vector4): void;
void SetRow(int i, Vector4 v);
def SetRow(i as int, v as Vector4) as void
Description

Sets a row of the matrix.

The i-th row is set from v. i must be from 0 to 3 inclusive.

See Also: GetRow.