mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
Fix gx.Color math operations (#13315)
This commit is contained in:
parent
44dddecc09
commit
a4fb5d2cfd
@ -144,7 +144,7 @@ pub fn (c Color) + (c2 Color) Color {
|
||||
r: c.r + c2.r
|
||||
g: c.g + c2.g
|
||||
b: c.b + c2.b
|
||||
a: c.b + c2.a
|
||||
a: c.a + c2.a
|
||||
}
|
||||
}
|
||||
|
||||
@ -153,7 +153,7 @@ pub fn (c Color) - (c2 Color) Color {
|
||||
r: c.r - c2.r
|
||||
g: c.g - c2.g
|
||||
b: c.b - c2.b
|
||||
a: c.b - c2.a
|
||||
a: c.a - c2.a
|
||||
}
|
||||
}
|
||||
|
||||
@ -162,7 +162,7 @@ pub fn (c Color) * (c2 Color) Color {
|
||||
r: c.r * c2.r
|
||||
g: c.g * c2.g
|
||||
b: c.b * c2.b
|
||||
a: c.b * c2.a
|
||||
a: c.a * c2.a
|
||||
}
|
||||
}
|
||||
|
||||
@ -171,7 +171,7 @@ pub fn (c Color) / (c2 Color) Color {
|
||||
r: c.r / c2.r
|
||||
g: c.g / c2.g
|
||||
b: c.b / c2.b
|
||||
a: c.b / c2.a
|
||||
a: c.a / c2.a
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user