pamoja for TypeScript - v0.1.17
    Preparing search index...

    Interface Pose

    Where a robot is and which way it faces.

    interface Pose {
        theta: number;
        x: number;
        y: number;
    }
    Index
    theta: number

    Heading from the world x axis, in radians, positive counter-clockwise.

    x: number

    Position along the world x axis, in meters.

    y: number

    Position along the world y axis, in meters.