1
0
Fork 0
forked from wry/wry

autocommit 2022-02-20 22:21:41 CET

This commit is contained in:
Julian Orth 2022-02-20 22:21:41 +01:00
parent 292fa50fe7
commit a8505be462
6 changed files with 54 additions and 53 deletions

View file

@ -32,12 +32,7 @@ impl Color {
}
pub const fn from_rgbaf(r: f32, g: f32, b: f32, a: f32) -> Self {
Self {
r,
g,
b,
a,
}
Self { r, g, b, a }
}
}