add method

Path add(
  1. Vector3 waypoint
)

Adds the given waypoint to this path.

Implementation

Path add(Vector3 waypoint ) {
	waypoints.add( waypoint );
	return this;
}