12345678910111213141516 |
- import { SVGWrapper, SVGConstructor } from '../Wrapper.js';
- import { SVGmsqrt } from './msqrt.js';
- import * as Notation from '../Notation.js';
- declare const SVGmenclose_base: import("../../common/Wrappers/menclose.js").MencloseConstructor<SVGWrapper<any, any, any>, SVGmsqrt<any, any, any>, any> & SVGConstructor<any, any, any>;
- export declare class SVGmenclose<N, T, D> extends SVGmenclose_base {
- static kind: string;
- static notations: Notation.DefList<SVGmenclose<any, any, any>, any>;
- toSVG(parent: N): void;
- arrow(W: number, a: number, double: boolean, offset?: string, dist?: number): N;
- line(pq: [number, number, number, number]): N;
- box(w: number, h: number, d: number, r?: number): N;
- ellipse(w: number, h: number, d: number): N;
- path(join: string, ...P: (string | number)[]): N;
- fill(...P: (string | number)[]): N;
- }
- export {};
|