Sets a row of the 3d matrix.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public void SetRow(
	int row,
	Vector3d rowVector
)
Visual Basic (Declaration)
Public Sub SetRow ( _
	row As Integer, _
	rowVector As Vector3d _
)
Visual C++
public:
void SetRow(
	int row, 
	Vector3d^ rowVector
)

Parameters

row
Type: System..::.Int32
A zero-based row index of the matrix (0, 1 or 2).
rowVector
Type: ceometric.VectorGeometry..::.Vector3d
A 3d vector.

Exceptions

ExceptionCondition
System..::.IndexOutOfRangeExceptionThe row index was out of range.

See Also