SLineRelation.js 411 B

1234567891011121314
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.SLineRelation = void 0;
  4. const SRelation_1 = require("./SRelation");
  5. class SLineRelation extends SRelation_1.SRelation {
  6. constructor() {
  7. super(...arguments);
  8. this.canAddPoint = true;
  9. }
  10. polyline2Curve() { }
  11. polyline2Line() { }
  12. polyline2Vertical() { }
  13. }
  14. exports.SLineRelation = SLineRelation;