Skip to content

Latest commit

 

History

History
 
 

spline

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Spline

Continuous curve passing through points. The tension parameter define the strength of each points over the curve. 0 mean it act like a line, 0.2 is the default value and render a smooth curve, value can be be as high as you want or even negative.

Installation

npm install @pencil.js/spline

Examples

import Spline from "@pencil.js/spline";

const tension = 0.5;
const options = {
    stroke: "red",
};
const spline = new Spline(from, [firstPoint, secondPoint, lastPoint], tension, options);