function shape (x, y, w, h) {
if (shapeSelection === 'Square') {
return svg5.square(x - (w/2), y - (h/2), w, h);
} else if (shapeSelection === 'Circle') {
return svg5.circle(x, y, w, h);
} else {
return svg5.square(x - (w/2), y - (h/2), w, h),
svg5.circle(x, y, w, h);
}
}