Sector.js 215 B

12345678
  1. function Sector(x, y, radius,startAngle,endAngle) {
  2. Point.apply(this, arguments);
  3. this.radius = radius;
  4. this.startAngle=startAngle;
  5. this.endAngle=endAngle;
  6. };
  7. Sector.prototype.geoType = "Sector";