Gets a row of the 3d matrix as a vector.

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

Syntax

C#
public Vector3d GetRow(
	int row
)
Visual Basic (Declaration)
Public Function GetRow ( _
	row As Integer _
) As Vector3d
Visual C++
public:
Vector3d^ GetRow(
	int row
)

Parameters

row
Type: System..::.Int32
A zero-based row index of the matrix (0, 1 or 2).

Return Value

Returns a row of the matrix in form of a vector.

Exceptions

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

See Also