123456789101112131415161718192021222324 |
- //CLASS:基本几何类型。
- function Geometry(){
- this.id = CanvasSketch.getId("geomtry_");
- this.contextIndex=0;
- this.floor = 1;
- };
- //bounds属性定义了当前Geometry外接矩形范围。
- Geometry.prototype.bounds = null;
- //定义Geometry的id属性。
- Geometry.prototype.id = null;
- Geometry.prototype.name = null;
- //定义对bounds基类克隆的方法
- Geometry.prototype.clone = function () {
- return new Geometry();
- };
- //销毁当前的Geometry
- Geometry.prototype.destroy = function () {
- this.bounds = null;
- this.id = null;
- };
|