* @param newPoint New point
*/
public void updatePointAt(int index, GlobalPosition newPoint) {
this.points.set(index, newPoint);
this.setChanged();
this.notifyObservers(new ObserverNotification(NotificationType.elementChanged, this));
this.clearChanged();
}