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