PathGVF

public final class PathGVF implements GuidingVectorField, FollowableGVF

An implementation of GuidingVectorField that follows the specified path.

Constructors

Link copied to clipboard
public PathGVF PathGVF(Path path, Double kN, Function1<Double, Double> errorMapFunc)

Properties

Link copied to clipboard
private final Vector2d endPosition

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

Link copied to clipboard
private final Function1<Double, Double> errorMapFunc

Custom error mapping (see eq. (4))

Link copied to clipboard
private final Double kN

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

Link copied to clipboard
Link copied to clipboard
private final Path path
Link copied to clipboard
private final Vector2d startPosition

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

Functions

Link copied to clipboard

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

Link copied to clipboard
public Function1<Double, Double> getErrorMapFunc()

Custom error mapping (see eq. (4))

Link copied to clipboard
public Double getKN()

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

Link copied to clipboard
Link copied to clipboard
public Path getPath()
Link copied to clipboard

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

Link copied to clipboard
public Unit reset()

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

Link copied to clipboard
public Unit setLastProjectDisplacement(Double lastProjectDisplacement)