1234567891011121314 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.SLineRelation = void 0;
- const SRelation_1 = require("./SRelation");
- class SLineRelation extends SRelation_1.SRelation {
- constructor() {
- super(...arguments);
- this.canAddPoint = true;
- }
- polyline2Curve() { }
- polyline2Line() { }
- polyline2Vertical() { }
- }
- exports.SLineRelation = SLineRelation;
|