Package | Description |
---|---|
agi.foundation.tracking |
Contains types for acquiring, analyzing and archiving dynamic data, such as those found in real-time feeds or simulation environments.
|
Modifier and Type | Method and Description |
---|---|
EntitySet<TEntity> |
WaypointVisualizer.getEntities()
Gets the entities being visualized.
|
EntitySet<TEntity> |
SensorFieldOfViewVisualizer.getEntities()
Gets the set of entities visualized by this instance.
|
EntitySet<TEntity> |
PointVisualizer.getEntities()
Gets the entities being visualized.
|
EntitySet<TEntity> |
ModelVisualizer.getEntities()
Gets the entities being visualized.
|
EntitySet<TEntity> |
MarkerVisualizer.getEntities()
Gets the entities being visualized.
|
EntitySet<TEntity> |
LabelVisualizer.getEntities()
Gets the entities being visualized.
|
EntitySet<TEntity> |
HistoryVisualizer.getEntities()
Gets the entities being visualized.
|
EntitySet<TEntity> |
HistoryGenerator.getEntities()
Gets the entities for which history is being maintained.
|
abstract EntitySet<TEntity> |
EntityVisualizer.getEntities()
Gets the entities being visualized.
|
EntitySet<TEntity> |
EntityFilterChain.getHomelessEntities()
Gets the set of entities that do not match any of the filters in the chain.
|
EntitySet<TEntity> |
EntityFilterChain.getInputEntities()
Gets the input entity set being filtered.
|
EntitySet<TEntity> |
EntityFilter.getMatchingEntities()
Gets the set of entities that match this filter.
|
Modifier and Type | Method and Description |
---|---|
void |
WaypointVisualizer.setEntities(EntitySet<TEntity> value)
Sets the entities being visualized.
|
void |
SensorFieldOfViewVisualizer.setEntities(EntitySet<TEntity> value)
Sets the set of entities visualized by this instance.
|
void |
PointVisualizer.setEntities(EntitySet<TEntity> value)
Sets the entities being visualized.
|
void |
ModelVisualizer.setEntities(EntitySet<TEntity> value)
Sets the entities being visualized.
|
void |
MarkerVisualizer.setEntities(EntitySet<TEntity> value)
Sets the entities being visualized.
|
void |
LabelVisualizer.setEntities(EntitySet<TEntity> value)
Sets the entities being visualized.
|
void |
HistoryVisualizer.setEntities(EntitySet<TEntity> value)
Sets the entities being visualized.
|
abstract void |
EntityVisualizer.setEntities(EntitySet<TEntity> value)
Sets the entities being visualized.
|
void |
EntityFilterChain.setInputEntities(EntitySet<TEntity> value)
Sets the input entity set being filtered.
|
Constructor and Description |
---|
EntityFilterChain(EntitySet<TEntity> inputEntities,
MatchingStrategy matchingStrategy)
Initializes a new instance using the provided
EntitySet
and value indicating if entities should be matched against multiple filters. |
HistoryGenerator(TypeLiteral<TEntity> typeLiteralTEntity,
EntitySet<TEntity> entities,
Duration historyLength)
|
HistoryVisualizer(TypeLiteral<TEntity> typeLiteralTEntity,
EntitySet<TEntity> entities,
HistoryGenerator<TEntity> historyGenerator)
Creates a new instance with the provided
EntitySet and HistoryGenerator . |
HistoryVisualizer(TypeLiteral<TEntity> typeLiteralTEntity,
EntitySet<TEntity> entities,
HistoryGenerator<TEntity> historyGenerator,
SetHint setHint)
|
LabelVisualizer(TypeLiteral<TEntity> typeLiteralTEntity,
EntitySet<TEntity> entities,
LabelCallback<TEntity> callback)
Creates a new instance with the provided
EntitySet and LabelCallback . |
LabelVisualizer(TypeLiteral<TEntity> typeLiteralTEntity,
EntitySet<TEntity> entities,
LabelCallback<TEntity> callback,
SetHint setHint)
|
MarkerVisualizer(TypeLiteral<TEntity> typeLiteralTEntity,
EntitySet<TEntity> entities,
MarkerCallback<TEntity> callback)
Creates a new instance with the provided
EntitySet and MarkerCallback . |
MarkerVisualizer(TypeLiteral<TEntity> typeLiteralTEntity,
EntitySet<TEntity> entities,
MarkerCallback<TEntity> callback,
SetHint setHint)
|
ModelVisualizer(TypeLiteral<TEntity> typeLiteralTEntity,
EntitySet<TEntity> entities,
ModelCallback<TEntity> callback)
Creates a new instance with the provided
EntitySet and ModelCallback . |
PointVisualizer(TypeLiteral<TEntity> typeLiteralTEntity,
EntitySet<TEntity> entities)
Initializes a new instance with the provided
EntitySet . |
PointVisualizer(TypeLiteral<TEntity> typeLiteralTEntity,
EntitySet<TEntity> entities,
SetHint setHint)
|
SensorFieldOfViewVisualizer(TypeLiteral<TEntity> typeLiteralTEntity,
EntitySet<TEntity> entities)
Initializes a new instance to project sensors onto the Earth.
|
SensorFieldOfViewVisualizer(TypeLiteral<TEntity> typeLiteralTEntity,
EntitySet<TEntity> entities,
CentralBody centralBody)
Initializes a new instance to project sensors onto a specified central body.
|
WaypointVisualizer(TypeLiteral<TEntity> typeLiteralTEntity,
EntitySet<TEntity> entities,
HistoryGenerator<TEntity> historyGenerator)
Creates a new instance with the provided
EntitySet and HistoryGenerator . |
WaypointVisualizer(TypeLiteral<TEntity> typeLiteralTEntity,
EntitySet<TEntity> entities,
HistoryGenerator<TEntity> historyGenerator,
SetHint setHint)
|