From befa33a87950b6d0f3364cb4fe603f6d84bf4b8f Mon Sep 17 00:00:00 2001 From: mat Date: Sun, 1 Oct 2023 15:19:13 -0500 Subject: organize azalea_core and re-export it from azalea --- azalea-core/src/aabb.rs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'azalea-core/src/aabb.rs') diff --git a/azalea-core/src/aabb.rs b/azalea-core/src/aabb.rs index 7ad4a657..61b015cb 100755 --- a/azalea-core/src/aabb.rs +++ b/azalea-core/src/aabb.rs @@ -1,6 +1,9 @@ -use crate::{Axis, BlockHitResult, BlockPos, Direction, Vec3}; - -pub const EPSILON: f64 = 1.0E-7; +use crate::{ + block_hit_result::BlockHitResult, + direction::{Axis, Direction}, + math::EPSILON, + position::{BlockPos, Vec3}, +}; /// A rectangular prism with a starting and ending point. #[derive(Copy, Clone, Debug, PartialEq, Default)] -- cgit v1.2.3