Package-level declarations
Miscellaneous utilities
Types
Link copied to clipboard
class CircularGVF(val center: Vector2d, val radius: Double, val kN: Double, val errorMapFunc: (Double) -> Double = { it }) : GuidingVectorField
Link copied to clipboard
class CompositeGVF(val pathGVF: PathGVF, val obstacles: Iterable<GVFObstacle>, val correctionRadius: Double = 5.0) : FollowableGVF
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Guiding vector field for effective path following described in section III, eq. (9) of 1610.04391.pdf. Implementation note: the function phi (see eq. (2)) and its properties are split up into Phi.target and Phi.tangent.
Link copied to clipboard
class GVFObstacle(val gvf: GuidingVectorField, val insetDistance: Double, val zeroInMapFunc: (Double) -> Double = { defaultMapFunction(it) }, val zeroOutMapFunc: (Double) -> Double = { defaultMapFunction(it) })
An obstacle vector field (\(\mathcal{X}_{\mathcal{R}_i}\) eq. 4) as described in this paper.
Link copied to clipboard
class PathGVF(val path: Path, val kN: Double, val errorMapFunc: (Double) -> Double = { it }) : GuidingVectorField, FollowableGVF
An implementation of GuidingVectorField that follows the specified path.
Link copied to clipboard
class PositionPathGVF(val path: PositionPath, val kN: Double, val errorMapFunc: (Double) -> Double = { it }) : GuidingVectorField
Link copied to clipboard
interface VectorField
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Returns whether two doubles are approximately equal (within EPSILON).
Link copied to clipboard
Evaluates polynomial at x.
Link copied to clipboard
Generates n rows of Pascal's triangle.
Link copied to clipboard
fun isolateRoots(polynomial: DoubleArray, pascalsTriangle: Array<IntArray> = generatePascalsTriangle(polynomial.size)): List<ClosedFloatingPointRange<Double>>
Returns a list of intervals that each contain a root of polynomial that lies in 0, 1. Uses the Modified Uspensky algorithm described here.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard