Spiral.js 304 B

1234567891011121314
  1. function Spiral() {
  2. Geometry.apply(this, arguments);
  3. this.point = null;
  4. this.point1=null;
  5. this.point2=null;
  6. this.points = [];
  7. this.sAngle=0;
  8. this.eAngle=1.5*Math.PI;
  9. this.selectIndex=null;
  10. this.symbolType="Stair";
  11. };
  12. Spiral.prototype = new Geometry();
  13. Spiral.prototype.geoType = "Spiral";