#pragma once #include namespace orange { struct AABB { vec3 min; vec3 max; void Extend(vec3 pos) { min = Min(pos, min); max = Max(pos, max); } }; }