@thi.ng/geom
Version:
Functional, polymorphic API for 2D geometry types & SVG generation
6 lines • 306 B
TypeScript
import type { Attribs } from "./api.js";
import type { Vec } from "@thi.ng/vectors";
import { Line } from "./api/line.js";
export declare function line3(a: Vec, b: Vec, attribs?: Attribs): Line;
export declare function line3(pts: Iterable<Vec>, attribs?: Attribs): Line;
//# sourceMappingURL=line3.d.ts.map