SingleCasement.js 316 B

12345678910111213
  1. function SingleCasement() {
  2. Geometry.apply(this, arguments);
  3. this.points = [];
  4. this.point1=null;
  5. this.point2=null;
  6. this.toward=1;
  7. this.vectorMeasureid=null;
  8. this.wallThickness;
  9. this.symbolType="window";
  10. };
  11. SingleCasement.prototype = new Geometry();
  12. SingleCasement.prototype.geoType = "SingleCasement";