Line.js 206 B

12345678910
  1. //CLASS:几何对象线类。
  2. function Line(points) {
  3. Geometry.apply(this, arguments);
  4. this.points = points;
  5. this.width;
  6. };
  7. Line.prototype = new Geometry();
  8. Line.prototype.geoType = "Line";