* After releasing the mouse the ellipse is memorized in the history, drawn
* and sent to the other users.
*/
public void mouseReleased(Double point, int scaleX, int scaleY) {
end = point;
Line line = new Line(start, end, color, chat.getMyJID());
chat.draw(line);
board.setCurrentShape(null);
}