1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#pragma once struct Rectangle { float x0; float y0; float x1; float y1; }; struct Circle { float x; float y; float r; };