12345678910111213 |
- function SingleCasement() {
- Geometry.apply(this, arguments);
- this.points = [];
- this.point1=null;
- this.point2=null;
- this.toward=1;
- this.vectorMeasureid=null;
- this.wallThickness;
- this.symbolType="window";
- };
- SingleCasement.prototype = new Geometry();
- SingleCasement.prototype.geoType = "SingleCasement";
|