3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-10-05 01:11:08 +02:00

Formatting fixes in the FireworkColor class

Dieser Commit ist enthalten in:
Camotoy 2021-08-29 10:36:34 -04:00
Ursprung e95d9d3b75
Commit ea8f4b854b
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 7EEFB66FE798081F

Datei anzeigen

@ -69,13 +69,13 @@ public enum FireworkColor {
// The following two methods were adapted from the Adventure project: // The following two methods were adapted from the Adventure project:
// https://github.com/KyoriPowered/adventure/blob/09edf74409feb52d9147a5a811910de0721acf95/api/src/main/java/net/kyori/adventure/text/format/NamedTextColor.java#L193-L237 // https://github.com/KyoriPowered/adventure/blob/09edf74409feb52d9147a5a811910de0721acf95/api/src/main/java/net/kyori/adventure/text/format/NamedTextColor.java#L193-L237
/** /**
* Find the named colour nearest to the provided colour. * Find the firework color nearest to the provided color.
* *
* @param any colour to match * @param any color to match
* @return nearest named colour. will always return a value * @return nearest named color. will always return a value
* @since 4.0.0 * @since 4.0.0
*/ */
public static FireworkColor nearestTo(final HSVLike any) { private static FireworkColor nearestTo(final HSVLike any) {
float matchedDistance = Float.MAX_VALUE; float matchedDistance = Float.MAX_VALUE;
FireworkColor match = VALUES[0]; FireworkColor match = VALUES[0];
for (final FireworkColor potential : VALUES) { for (final FireworkColor potential : VALUES) {
@ -92,11 +92,11 @@ public enum FireworkColor {
} }
/** /**
* Returns a distance metric to the other colour. * Returns a distance metric to the other color.
* *
* <p>This value is unitless and should only be used to compare with other text colours.</p> * <p>This value is unitless and should only be used to compare with other firework colors.</p>
* *
* @param other colour to compare to * @param other color to compare to
* @return distance metric * @return distance metric
*/ */
private static float distance(final HSVLike self, final HSVLike other) { private static float distance(final HSVLike self, final HSVLike other) {