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