subdivideRight method
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();
}
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.
void subdivideRight(double t)
{
flip();
subdivideLeft(1 - t);
flip();
}