12345678910 |
- import { SRelation } from "./SRelation";
- import { SGraphItem } from "@persagy-web/graph/lib";
- import { Relation } from "../../types/topology/Relation";
- export declare class SVerticalRelation extends SRelation {
- data: Relation;
- constructor(parent: SGraphItem | null, data: Relation);
- vertical2Curve(): void;
- vertical2Line(): void;
- vertical2Polyline(): void;
- }
|