Sets a column 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 SetColumn(
	int column,
	Vector3d columnVector
)
Visual Basic (Declaration)
Public Sub SetColumn ( _
	column As Integer, _
	columnVector As Vector3d _
)
Visual C++
public:
void SetColumn(
	int column, 
	Vector3d^ columnVector
)

Parameters

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

Exceptions

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

See Also