mroot.d.ts 458 B

123456789
  1. import { SVGWrapper, Constructor } from '../Wrapper.js';
  2. import { SVGmsqrt } from './msqrt.js';
  3. import { BBox } from '../../../util/BBox.js';
  4. declare const SVGmroot_base: import("../../common/Wrappers/mroot.js").MrootConstructor & Constructor<SVGmsqrt<any, any, any>>;
  5. export declare class SVGmroot<N, T, D> extends SVGmroot_base {
  6. static kind: string;
  7. protected addRoot(ROOT: N, root: SVGWrapper<N, T, D>, sbox: BBox, H: number): void;
  8. }
  9. export {};