Remove redundant pub

This commit is contained in:
Hanno Braun 2024-11-06 19:10:13 +01:00
parent 378047b79a
commit 3c7a2317c1

View File

@ -2,7 +2,7 @@ pub type Point = [Scalar; 3];
#[derive(Clone, Copy)]
pub struct Scalar {
pub inner: f64,
inner: f64,
}
impl Scalar {