Meter.js 194 B

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