版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
317 B

  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. /**
  4. * SVG point.
  5. *
  6. * @see https://developer.mozilla.org/en-US/docs/Web/API/SVGPoint
  7. */
  8. class SVGPoint {
  9. constructor() {
  10. this.x = 0;
  11. this.y = 0;
  12. }
  13. }
  14. exports.default = SVGPoint;
  15. //# sourceMappingURL=SVGPoint.js.map