Ignore:
Timestamp:
05/10/18 16:04:51 (6 years ago)
Author:
davidb
Message:

Reworking of the code-base to separate logic from graphics. This version of Expeditee now supports a JFX graphics as an alternative to SWING

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/gui/ColorUtils.java

    r919 r1102  
    1919package org.expeditee.gui;
    2020
    21 import java.awt.Color;
     21import org.expeditee.core.Colour;
    2222
    2323public class ColorUtils {
     
    3636         * @return the next color on the color wheel
    3737         */
    38         public static Color getNextColor(Color color, Color[] wheel, Color skip) {
     38        public static Colour getNextColor(Colour color, Colour[] wheel, Colour skip) {
    3939                if (color == null) {
    4040                        color = wheel[0];
Note: See TracChangeset for help on using the changeset viewer.