export interface StadiumDefinition {
    sideLength: number;
    radius: number;
    circumference: number;
    area: number;
}
