Arrow.js 191 B

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