Merge pull request #408 from analogjupiter/pr407-proper

Fix ColorF(Color) constructor
This commit is contained in:
Adam D. Ruppe 2023-12-19 21:12:10 -05:00 committed by GitHub
commit 1b9c97d101
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 6 deletions

View File

@ -570,12 +570,7 @@ struct ColorF {
Constructs a FP color from an integer one
+/
public this(const Color integer) {
_components = [
r / 255.0f,
g / 255.0f,
b / 255.0f,
a / 255.0f,
];
_components[0.. 4] = integer.components[0 .. 4] / 255.0f;
}
///