Returns a pipeline function that takes a point to be transformed through a series of functions
// Create pipelineconst p = Points.pipeline(Points.normalise, Points.invert);// Now run it on `somePoint`.// First we normalised, and then invertconst changedPoint = p(somePoint); Copy
// Create pipelineconst p = Points.pipeline(Points.normalise, Points.invert);// Now run it on `somePoint`.// First we normalised, and then invertconst changedPoint = p(somePoint);
If you don't want to create a pipeline, use pipelineApply.
Rest
Pipeline of functions
Returns a pipeline function that takes a point to be transformed through a series of functions
If you don't want to create a pipeline, use pipelineApply.