summary refs log tree commit diff
path: root/src/Math/Grid.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Math/Grid.hpp')
-rw-r--r--src/Math/Grid.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Math/Grid.hpp b/src/Math/Grid.hpp
index e9907a0..8c0c423 100644
--- a/src/Math/Grid.hpp
+++ b/src/Math/Grid.hpp
@@ -5,7 +5,7 @@
 namespace Math {
 
 struct GridCellBoundaries {
-    float x1, x2, y1, y2;
+    Real x1, x2, y1, y2;
 
     [[nodiscard]] Vector<2> top_left() const;
     [[nodiscard]] Vector<2> top_right() const;
@@ -16,7 +16,7 @@ struct GridCellBoundaries {
 GridCellBoundaries grid_cell_for_point(Vector<2> point);
 
 struct CubeCellBoundaries {
-    float x1, x2, y1, y2, z1, z2;
+    Real x1, x2, y1, y2, z1, z2;
 
     [[nodiscard]] Vector<3> front_top_left() const;
     [[nodiscard]] Vector<3> front_top_right() const;