Runs a sequential series of functions on pt. The output from one feeding into the next.
pt
const p = Points.pipelineApply(somePoint, Points.normalise, Points.invert); Copy
const p = Points.pipelineApply(somePoint, Points.normalise, Points.invert);
If you want to make a reusable pipeline of functions, consider pipeline instead.
Rest
Runs a sequential series of functions on
pt
. The output from one feeding into the next.If you want to make a reusable pipeline of functions, consider pipeline instead.