Matrix3D::SetRow
Defined in: C4Matrix3D.h
Sets the entries of a particular row to the values of an Antivector3D object.
Prototype
Matrix3D& SetRow(int32 i, const Antivector3D& row);
Parameters
i |
The index of the row. This must be 0, 1, or 2.
|
row |
A 3D vector containing the new values to be stored in the row.
|
Description
The SetRow function sets the three entries in the row specified by the i parameter to the values contained in the 3D antivector specified by the row parameter.
See Also
Matrix3D::GetRow
|