Path specifies a set of points that an actor will move among, in order, at a fixed speed.

Constructors

Methods

Constructors

Methods

  • Return the number of points in this path

    Returns number

  • Return a copy of the ith point in the path. We return a copy, so that the caller can use the point

    Parameters

    • i: number

      The index of the point to return (0-based)

    Returns b2Vec2

  • Add a new point to a path by giving the coordinates for where the center of the actor goes next. This returns the path, so that calls to to can be chained.

    Parameters

    • x: number

      X value of the new coordinate

    • y: number

      Y value of the new coordinate

    Returns Path