From 56ce01e262832b78530b0721f735a95919651d91 Mon Sep 17 00:00:00 2001 From: Clark Moody Date: Wed, 1 Apr 2020 16:17:46 -0500 Subject: Simplify range declaration --- core/src/color.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'core') diff --git a/core/src/color.rs b/core/src/color.rs index 57765df0..eff14948 100644 --- a/core/src/color.rs +++ b/core/src/color.rs @@ -42,19 +42,19 @@ impl Color { /// New Color with range checks pub fn new(r: f32, g: f32, b: f32, a: f32) -> Color { debug_assert!( - (0.0f32..=1.0f32).contains(&r), + (0.0..=1.0).contains(&r), "Red component must be on [0, 1]" ); debug_assert!( - (0.0f32..=1.0f32).contains(&g), + (0.0..=1.0).contains(&g), "Green component must be on [0, 1]" ); debug_assert!( - (0.0f32..=1.0f32).contains(&b), + (0.0..=1.0).contains(&b), "Blue component must be on [0, 1]" ); debug_assert!( - (0.0f32..=1.0f32).contains(&a), + (0.0..=1.0).contains(&a), "Alpha component must be on [0, 1]" ); -- cgit