PathGVF

class PathGVF(val path: Path, val kN: Double, val errorMapFunc: (Double) -> Double = { it }) : GuidingVectorField, FollowableGVF

An implementation of GuidingVectorField that follows the specified path.

Constructors

Link copied to clipboard
constructor(path: Path, kN: Double, errorMapFunc: (Double) -> Double = { it })

Properties

Link copied to clipboard
open override val endPosition: Vector2d

The final target position. Used for basic velocity profiling to decelerate accordingly.

Link copied to clipboard
open override val errorMapFunc: (Double) -> Double

Custom error mapping (see eq. (4))

Link copied to clipboard
open override val kN: Double

Path normal weight (see eq. (9)). Higher values make path convergence more aggressive.

Link copied to clipboard
open override var lastProjectDisplacement: Double
Link copied to clipboard
open override val path: Path
Link copied to clipboard
open override val startPosition: Vector2d

The starting position. Used for basic velocity profiling to accelerate accordingly.

Functions

Link copied to clipboard
Link copied to clipboard
open override fun reset()

Any resetting that needs to happen before another follower uses this vector field should go here.