Click or drag to resize
ToolboxJoinInterpolatablesT Method
http://www.emgu.com
Joining multiple index ascending IInterpolatables together as a single index ascending IInterpolatable.

Namespace: Emgu.Util
Assembly: Emgu.Util (in Emgu.Util.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public static IEnumerable<T> JoinInterpolatables<T>(
	params IEnumerable<T>[] enums
)
where T : new(), Object, IInterpolatable<T>

Parameters

enums
Type: System.Collections.GenericIEnumerableT
The enumerables, each should be stored in index ascending order

Type Parameters

T
The type of objects that will be joined

Return Value

Type: IEnumerableT
A single enumerable sorted in index ascending order
See Also