Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/HumbleUI/Skija
/ convertToHSV
Method
convertToHSV
shared/java/Color.java:150–152 ·
view source on GitHub ↗
(int color)
Source
from the content-addressed store, hash-verified
148
}
149
150
public
static
float[] convertToHSV(
int
color) {
151
return
convertRGBToHSV(getR(color), getG(color), getB(color));
152
}
153
154
public
static
int
makeFromHSV(float[] hsv) {
155
return
makeFromHSV(255, hsv);
Callers
1
execute
Method · 0.95
Calls
4
convertRGBToHSV
Method · 0.95
getR
Method · 0.95
getG
Method · 0.95
getB
Method · 0.95
Tested by
1
execute
Method · 0.76