SlidingDoor.js 302 B

12345678910111213
  1. function SlidingDoor() {
  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="door";
  10. };
  11. SlidingDoor.prototype = new Geometry();
  12. SlidingDoor.prototype.geoType = "SlidingDoor";