}
}
public StyleBuilder addCircle(ScreenLocation screenLocation){
CircleElement newElement = new CircleElement();
newElement.x = screenLocation.getX() - 10;
newElement.y = screenLocation.getY() - 10;
newElement.width = 20;
newElement.height = 20;
return addElement(newElement);