SVerticalRelation.js 426 B

1234567891011121314
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.SVerticalRelation = void 0;
  4. const SRelation_1 = require("./SRelation");
  5. class SVerticalRelation extends SRelation_1.SRelation {
  6. constructor(parent, data) {
  7. super(parent);
  8. this.data = data;
  9. }
  10. vertical2Curve() { }
  11. vertical2Line() { }
  12. vertical2Polyline() { }
  13. }
  14. exports.SVerticalRelation = SVerticalRelation;