Click or drag to resize
DigitalRuneScatteredInterpolationFInsertItem Method

Namespace: DigitalRune.Mathematics.Interpolation
Assembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax
protected override void InsertItem(
	int index,
	Pair<VectorF, VectorF> item
)

Parameters

index
Type: SystemInt32
The zero-based index at which item should be inserted.
item
Type: DigitalRune.CollectionsPairVectorF, VectorF
The object to insert. The value can be null for reference types.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionindex is less than zero.
ArgumentOutOfRangeExceptionindex is greater than Count.
MathematicsException The vector dimension of a newly added vector is different from the dimensions of the already registered vectors.
ArgumentNullException The x or y vector in item is .
See Also