com.vadeen.neat.gui.Gui Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neat-gui Show documentation
Show all versions of neat-gui Show documentation
GUI implemenation for com.vadeen.neat.
The newest version!
package com.vadeen.neat.gui;
import java.awt.*;
public class Gui {
/**
* Returns a semi unique color for the provided id.
*/
public static Color colorOfId(int id) {
return Color.getHSBColor((id/20.0f)%1.0f, 1.0f - (id/20)%0.5f, 1.0f - (id/20)%0.5f);
}
}