Ellipse.js 95 B

123456
  1. class Ellipse {
  2. constructor(rx, ry=rx){
  3. this.rx = rx;
  4. this.ry = ry;
  5. }
  6. }