EuclideanConfigurableMoveNode

open class EuclideanConfigurableMoveNode<T, P : Position<P>, Vector<P>>(environment: Environment<T, P>, node: Node<T>, routingStrategy: RoutingStrategy<T, P>, targetSelectionStrategy: TargetSelectionStrategy<T, P>, speedSelectionStrategy: SpeedSelectionStrategy<T, P>) : AbstractConfigurableMoveNode<T, P> (source)

An AbstractConfigurableMoveNode specialized for Euclidean spaces.

This class provides a default interpolatePositions implementation that moves the node toward a target without exceeding a provided maximum step length.

Parameters

environment

the Environment executing the simulation.

node

the Node executing this Action.

routingStrategy

the RoutingStrategy selected for this action.

targetSelectionStrategy

the TargetSelectionStrategy selected for this action.

speedSelectionStrategy

the SpeedSelectionStrategy selected for this action.

Type Parameters

T

the concentration type.

P

the Position type used for spatial coordinates and vectors.

Inheritors

Constructors

Link copied to clipboard
constructor(environment: Environment<T, P>, node: Node<T>, routingStrategy: RoutingStrategy<T, P>, targetSelectionStrategy: TargetSelectionStrategy<T, P>, speedSelectionStrategy: SpeedSelectionStrategy<T, P>)
constructor(environment: Environment<T, P>, node: Node<T>, reaction: Reaction<T>, routingStrategy: RoutingStrategy<T, P>, targetSelectionStrategy: TargetSelectionStrategy<T, P>, speed: Double)

Secondary constructor that uses a GloballyConstantSpeed.

Properties

Link copied to clipboard
override val context: Context?
Link copied to clipboard
override val nextPosition: P?
Link copied to clipboard

Functions

Link copied to clipboard
open override fun cloneAction(node: Node<T>, reaction: Reaction<T>): Action<T>
Link copied to clipboard
open fun execute()
Link copied to clipboard