| VectorFGetSubvector Method |
Gets a subvector of this vector.
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public VectorF GetSubvector(
int startIndex,
int subvectorLength
)
Public Function GetSubvector (
startIndex As Integer,
subvectorLength As Integer
) As VectorF
public:
VectorF^ GetSubvector(
int startIndex,
int subvectorLength
)
member GetSubvector :
startIndex : int *
subvectorLength : int -> VectorF
Parameters
- startIndex
- Type: SystemInt32
The index of the first element of the subvector. - subvectorLength
- Type: SystemInt32
The length of the subvector.
Return Value
Type:
VectorFThe subvector.
Exceptions See Also