UNPKG

d3-ternary

Version:
6 lines (5 loc) 251 B
import type { Barycentric, TernaryPlot } from "./types"; /** * Constructs a new ternary plot using the provided barycentric converter */ export declare function ternaryPlot<T = [number, number, number]>(barycentric: Barycentric<T>): TernaryPlot<T>;