
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
curve-interpolator
Advanced tools
A lib for interpolating values over a cubic Cardinal/Catmull-Rom spline curve.
npm install --save curve-interpolator
Reference the CurveInterpolator class:
// commonjs
const CurveInterpolator = require('curve-interpolator').CurveInterpolator;
// es6
import { CurveInterpolator } from 'curve-interpolator';
Define controlpoints you want the curve to pass through and pass it to the constructor of the CurveInterpolator to create an instance:
const points = [
[0, 4],
[1, 2],
[3, 6.5],
[4, 8],
[5.5, 4],
[7, 3],
[8, 0],
...
];
const tension = 0.2;
const interp = new CurveInterpolator(points, tension);
// get single point
const position = 0.3 // [0 - 1]
const pt = interp.getPointAt(position)
// get points evently distributed along the curve
const nPoints = 1000;
const pts = interp.getPoints(nPoints - 1);
// lookup values along x and y axises
const yintersects = interp.y(position);
/*
max number of solutions (0 = all (default), 1 = first, -1 = last)
A negative max value counts solutions from end of curve
*/
const max = -1;
const xintersects = interp.x(position, max);
// get bounding box
const bbox = interp.getBoundingBox();
Online example on ObservableHQ: https://observablehq.com/@kjerandp/curve-interpolator-v1
Docs are generated using typedoc in ./docs
. To create:
npm run docs
Online: https://kjerandp.github.io/curve-interpolator/
MIT
FAQs
Interpolate values on a Cardinal/Catmull-Rom spline curve
The npm package curve-interpolator receives a total of 1,251 weekly downloads. As such, curve-interpolator popularity was classified as popular.
We found that curve-interpolator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.