WinderStair.js 419 B

123456789101112131415161718
  1. function WinderStair() {
  2. Geometry.apply(this, arguments);
  3. this.points = [];
  4. this.temp_points=[];
  5. this.linkedpoints=[];
  6. this.borderpoints={};
  7. this.arrowpoints={};
  8. this.lastpoint=null;
  9. //this.point1=null;
  10. //this.point2=null;
  11. this.toward=1;
  12. this.vectorMeasureid=null;
  13. this.wallThickness;
  14. this.symbolType="Stair";
  15. };
  16. WinderStair.prototype = new Geometry();
  17. WinderStair.prototype.geoType = "WinderStair";