123456789101112131415 |
- import { SLine, SPainter, SPoint, SRect } from "@persagy-web/draw/lib";
- import { SGraphItem } from "@persagy-web/graph/lib";
- export declare class SHighlightItem extends SGraphItem {
- distance: number;
- private type;
- _point: SPoint;
- get point(): SPoint;
- set point(v: SPoint);
- _line: SLine;
- get line(): SLine;
- set line(v: SLine);
- constructor(parent: SGraphItem | null);
- boundingRect(): SRect;
- onDraw(painter: SPainter): void;
- }
|