1234567891011121314 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.SVerticalRelation = void 0;
- const SRelation_1 = require("./SRelation");
- class SVerticalRelation extends SRelation_1.SRelation {
- constructor(parent, data) {
- super(parent);
- this.data = data;
- }
- vertical2Curve() { }
- vertical2Line() { }
- vertical2Polyline() { }
- }
- exports.SVerticalRelation = SVerticalRelation;
|