1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-11 04:32:26 +00:00
plantuml/src/net/sourceforge/plantuml/klimt/color/ColorHSB.java
Arnaud Roques aa033bc2c1 wip
2023-03-08 21:49:44 +01:00

45 lines
983 B
Java

package net.sourceforge.plantuml.klimt.color;
import java.awt.Color;
import java.util.Locale;
/**
* {@link Color} with hue, saturation and brightness.
*/
public class ColorHSB extends Color {
// ::remove file when __HAXE__
private final float hue;
private final float saturation;
private final float brightness;
public ColorHSB(int rgba) {
super(rgba, true);
final float[] hsb = Color.RGBtoHSB(getRed(), getGreen(), getBlue(), null);
hue = hsb[0];
saturation = hsb[1];
brightness = hsb[2];
}
public ColorHSB(Color other) {
this(other.getRGB());
}
public float getHue() {
return hue;
}
public float getSaturation() {
return saturation;
}
public float getBrightness() {
return brightness;
}
@Override
public String toString() {
return String.format(Locale.US, "%s[a=%02X r=%02X g=%02X b=%02X / h=%f s=%f b=%f]", getClass().getSimpleName(),
getAlpha(), getRed(), getGreen(), getBlue(), getHue(), getSaturation(), getBrightness());
}
}