//CLASS:几何对象线类。 function Grid(points) { Geometry.apply(this, arguments); this.points = points; }; Grid.prototype = new Geometry(); Grid.prototype.geoType = "Grid";