SegmentResultsGetMotionCollectionT Method (String, IListITimeBasedState) | 
  
    Namespace: 
   AGI.Foundation.SegmentPropagation
    Assembly:
   AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic static List<Motion<T>> GetMotionCollection<T>(
	string element,
	IList<ITimeBasedState> states
)
Public Shared Function GetMotionCollection(Of T) ( 
	element As String,
	states As IList(Of ITimeBasedState)
) As List(Of Motion(Of T))
public:
generic<typename T>
static List<Motion<T>>^ GetMotionCollection(
	String^ element, 
	IList<ITimeBasedState^>^ states
)
static member GetMotionCollection : 
        element : string * 
        states : IList<ITimeBasedState> -> List<Motion<'T>> 
Parameters
- element
 - Type: SystemString
The element whose data you want. - states
 - Type: System.Collections.GenericIListITimeBasedState
The list of states to extract the states of element from. 
Type Parameters
- T
 - The type (Double, Cartesian...) that the element is.
 
Return Value
Type: 
ListMotionTThe 
Motions{T} of the 
element from the 
states.
See Also