diff --git a/src/geometry/point_construction.rs b/src/geometry/point_construction.rs index 2136080a..ac54b349 100644 --- a/src/geometry/point_construction.rs +++ b/src/geometry/point_construction.rs @@ -202,7 +202,7 @@ impl Point1 { /// assert_eq!(p.x, 1.0); /// ``` #[inline] - pub fn new(x: T) -> Self { + pub const fn new(x: T) -> Self { Point { coords: Vector1::new(x), } @@ -216,7 +216,7 @@ macro_rules! componentwise_constructors_impl( #[doc = $doc] #[doc = "```"] #[inline] - pub fn new($($args: T),*) -> Self { + pub const fn new($($args: T),*) -> Self { Point { coords: $Vector::new($($args),*) } } }