Searched refs:from_color (Results 1 – 3 of 3) sorted by relevance
/StarryEngine/starry_client/src/base/ |
H A D | color.rs | 47 pub fn interpolate(from_color: Color, to_color: Color, scale: f64) -> Color { in interpolate() 48 let r = Color::value_interpolate(from_color.r(), to_color.r(), scale); in interpolate() 49 let g = Color::value_interpolate(from_color.r(), to_color.r(), scale); in interpolate() 50 let b = Color::value_interpolate(from_color.r(), to_color.r(), scale); in interpolate() 51 let a = Color::value_interpolate(from_color.r(), to_color.r(), scale); in interpolate()
|
/StarryEngine/starry_toolkit/src/widgets/ |
H A D | image.rs | 36 Self::new_from_image(ImageResource::from_color( in new_from_color() 77 (*self.image.borrow_mut()) = ImageResource::from_color( in set_from_color()
|
/StarryEngine/starry_server/src/base/ |
H A D | image.rs | 246 Image::from_color(width, height, Color::rgb(0, 0, 0)) in new() 250 pub fn from_color(width: i32, height: i32, color: Color) -> Self { in from_color() method
|