ixfx
    Preparing search index...

    Type Alias PointRelationResult

    type PointRelationResult = {
        angle: number;
        average: Point;
        centroid: Point;
        distanceFromLast: number;
        distanceFromStart: number;
        speed: number;
    }
    Index

    Properties

    angle: number

    Angle from start

    average: Point

    Average of all points seen This is calculated by summing x,y and dividing by total points

    centroid: Point

    Center point from start

    distanceFromLast: number

    Distance from last compared point

    distanceFromStart: number

    Distance from start

    speed: number

    Speed. Distance/millisecond from one sample to the next.