Nearest
class Nearest<T>(environment: Euclidean2DEnvironment<T>, node: Node<T>) : Filtered<T, Euclidean2DPosition>
Content copied to clipboard
Filtered strategy considering only the group steering action and the non-group steering action whose targets are nearest to the node's position. The two actions are combined using DistanceWeighted strategy.
Parameters
environment
the environment in which the node moves.
Content copied to clipboard
node
the owner of the steering action this strategy belongs to.
Content copied to clipboard
Constructors
Functions
Link copied to clipboard
open override fun computeNextPosition(actions: List<SteeringAction<T, Euclidean2DPosition>>): Euclidean2DPosition
Content copied to clipboard
Delegated to steerStrategy after filtering the given actions.
Link copied to clipboard
open override fun computeTarget(actions: List<SteeringAction<T, Euclidean2DPosition>>): Euclidean2DPosition
Content copied to clipboard
Computes the target to reach starting from the steering actions the node obey to, in absolute coordinates.