Sets a row of the matrix.
Namespace:
ceometric.VectorGeometryAssembly: ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.6.0.0 (1.6.0.0)
Syntax
| C# |
|---|
public void SetRow( int row, double a1, double a2, double a3, double a4 ) |
| Visual Basic (Declaration) |
|---|
Public Sub SetRow ( _ row As Integer, _ a1 As Double, _ a2 As Double, _ a3 As Double, _ a4 As Double _ ) |
| Visual C++ |
|---|
public: void SetRow( int row, double a1, double a2, double a3, double a4 ) |
Parameters
- row
- Type: System..::.Int32
The zero-based row index.
- a1
- Type: System..::.Double
Element [row, 0].
- a2
- Type: System..::.Double
Element [row, 1].
- a3
- Type: System..::.Double
Element [row, 2].
- a4
- Type: System..::.Double
Element [row, 3].
Exceptions
| Exception | Condition |
|---|---|
| System..::.IndexOutOfRangeException | The row index is not equal to 0, 1, 2 or 3. |