Sector2.js 263 B

123456789101112
  1. //CLASS:几何对象线类。
  2. function Sector2(points,r) {
  3. Geometry.apply(this, arguments);
  4. this.points = points;
  5. //this.linestyle=linestyle;
  6. this.r=r;
  7. this.width;
  8. };
  9. Sector2.prototype = new Geometry();
  10. Sector2.prototype.geoType = "Sector2";