this.containsAlightPoint = function() {
    for (var i = 0; i < this.points.length; i++) {
      if (this.points[i].containsAlightPoint()) return true;
    }
    return false;