@thi.ng/geom
Version:
Functional, polymorphic API for 2D geometry types & SVG generation
16 lines • 570 B
TypeScript
import type { Attribs, IHiccupShape3 } from "./api.js";
import { Group3 } from "./api/group3.js";
/**
* Creates a group with given attribs and child shapes (nested groups are
* supported).
*
* @remarks
* Use the special `__inkscapeLayer` control attrib to declare the group as an
* Inkscape layer and the given value as layer name (only relevant and used when
* later converted to SVG).
*
* @param attribs
* @param children
*/
export declare const group3: (attribs?: Attribs, children?: Iterable<IHiccupShape3>) => Group3;
//# sourceMappingURL=group3.d.ts.map