aboutsummaryrefslogtreecommitdiff
path: root/src/core/ray.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/ray.rs')
-rw-r--r--src/core/ray.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/ray.rs b/src/core/ray.rs
index 7d73b93..54af639 100644
--- a/src/core/ray.rs
+++ b/src/core/ray.rs
@@ -1,6 +1,7 @@
use crate::core::Vector3f;
pub struct Ray {
- origin: Vector3f,
- direction: Vector3f,
+ pub origin: Vector3f,
+ pub direction: Vector3f,
}
+