{
for( Geometric g : graph.getGeometricObjects( level ) )
{
if( g instanceof Circle )
{
Circle c = (Circle)g;
c.setCenter( (float)( c.getCenter().getX() * xRatio ), (float)( c.getCenter().getY() * yRatio ) );
}
else if( g instanceof Rectangle )
{
Rectangle r = (Rectangle)g;
r.setBottomRight( (float)( r.getBottomRight().getX() * xRatio ), (float)( r.getBottomRight().getY() * yRatio ) );