Optibits
Loading...
Searching...
No Matches
AABB.hpp
1#pragma once
2
3#include <cmath>
4
5namespace Optibits
6{
7
8 struct Point
9 {
10 double x = .0, y = .0;
11 };
12
13
14}
Definition AABB.hpp:9