CompositeGVF

class CompositeGVF(val pathGVF: PathGVF, val obstacles: Iterable<GVFObstacle>, val correctionRadius: Double = 5.0) : FollowableGVF

A composite guiding vector field that avoids obstacles and follows pathGVF.

Parameters

correctionRadius

If the robot is within this distance of the end of the path, all obstacles will be ignored.

Constructors

Link copied to clipboard
constructor(pathGVF: PathGVF, vararg obstacles: GVFObstacle)
constructor(pathGVF: PathGVF, obstacles: Iterable<GVFObstacle>, correctionRadius: Double = 5.0)

Properties

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

Functions

Link copied to clipboard
Link copied to clipboard
open operator override fun get(x: Double, y: Double): Vector2d

Returns the normalized value of the vector field at the given point.

Link copied to clipboard
open override fun reset()

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