#pragma once struct Rectangle { float x0; float y0; float x1; float y1; }; struct Circle { float x; float y; float r; };