subdivideRight method

void subdivideRight(
  1. double t
)

Changes this curve in place to be the portion of itself from 0, t. @param {number} t The end of the desired portion of the curve.

Implementation

void subdivideRight(double t)
{
  flip();
  subdivideLeft(1 - t);
  flip();
}