版博士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.
 
 
 
 

10 regels
155 B

  1. /**
  2. * SVG point.
  3. *
  4. * @see https://developer.mozilla.org/en-US/docs/Web/API/SVGPoint
  5. */
  6. export default class SVGPoint {
  7. x: number;
  8. y: number;
  9. }