SAnchorItem.d.ts 336 B

1234567891011
  1. import { SPainter } from "@persagy-web/draw/lib";
  2. import { SGraphItem } from "../SGraphItem";
  3. export declare class SAnchorItem extends SGraphItem {
  4. private width;
  5. private height;
  6. isConnected: boolean;
  7. dis: number;
  8. sceneDis: number;
  9. constructor(parent?: SGraphItem | null);
  10. onDraw(painter: SPainter): void;
  11. }