contour-plot-svg v2.0.3
Contour Plot
Contour Plot is a TypeScript library designed for efficient plotting of functions that map (x, y) points to a limited set of discrete values. The library evaluates the function at grid points with configurable density, refines boundaries where neighboring grid points produce different values, and generates a list of squares or runs (unit-height rectangles). Within each square or run, the function's value is treated as constant. The coordinates of the building blocks are selected so that they can be precisely and efficiently rendered as SVG.
Example usage
SVG output
The following TypeScript code snippet will create an SVG and draw a filled hyperbola:
import {Plot, runsToSvg} from 'contour-plot-svg';
document.body.innerHTML = `
<svg style="width: 100%; height: calc(100vh - 20px)">
<g id="plot" />
</svg>`;
const svg = document.querySelector('svg')!;
const plot = svg.querySelector('#plot') as SVGElement;
const hyperbola = (x: number, y: number) => x * y > 10000;
const width = svg.clientWidth;
const height = svg.clientHeight;
const domain = {x: -width / 2, y: -height / 2, width, height};
plot.style.transform = `translate(${-domain.x}px, ${-domain.y}px)`;
plot.append(...runsToSvg(
new Plot<boolean>(hyperbola)
.compute(domain, /* sampleSpacing= */ 128, /* pixelSize= */ 1)
.runs(),
/* addStyles= */ (el, isInside) => {
el.style.stroke = isInside ? 'olive' : 'lightgreen';
}));
Text output
The library can also visualize boolean-valued functions using Unicode block drawing character, exposing the plot's underlying structure:
import {Plot, squaresToText} from 'contour-plot-svg';
const domain = {x: -8, y: -8, width: 16, height: 8};
const plot = new Plot((x, y) => x * x + y * y < 45)
.compute(domain, /* sampleSpacing= */ 4, /* pixelSize= */ 1);
const pre = document.createElement('pre');
pre.style.lineHeight = '1';
pre.textContent = squaresToText(plot.squares());
document.body.append(pre);
Result
┌─┐ ┌─┐ ┌─┐ □ □ □ □ ┌─┐ ┌─┐ ┌─┐
└─┘ └─┘ └─┘ ■ ■ ■ ■ └─┘ └─┘ └─┘
┌─┐ □ □ ▗▄▖ ▗▄▖ ▗▄▖ ▗▄▖ □ □ ┌─┐
└─┘ □ ■ ▝▀▘ ▝▀▘ ▝▀▘ ▝▀▘ ■ □ └─┘
┌─┐ ▗▄▖ ▗▄▄▄▄▄▖ ▗▄▄▄▄▄▖ ▗▄▖ ┌─┐
└─┘ ▝▀▘ ▐█████▌ ▐█████▌ ▝▀▘ └─┘
□ ■ ▗▄▖ ▐█████▌ ▐█████▌ ▗▄▖ ■ □
□ ■ ▝▀▘ ▝▀▀▀▀▀▘ ▝▀▀▀▀▀▘ ▝▀▘ ■ □
Interactive demo
To start a demo showcasing all features, run the following commands then open http://localhost:4173. There you can select a function to plot, specify the resolution, and optionally highlight the edges of the building blocks.
git clone https://github.com/pallosp/contour_plot.git
cd contour_plot
npm install
npm run build
npm run preview