Package net.sf.nfp.mini.misc

Examples of net.sf.nfp.mini.misc.Color


    }
    final int step = 10;
    for (int tempStep = tempStart; tempStep <= tempEnd; tempStep += step) {
      colorIndex = (colorIndex + 1) % BACKGROUND_COLORS.length;
      int c = BACKGROUND_COLORS[colorIndex];
      c = Color.blend(new Color(c), new Color(color)).getRGB();
      g.setColor(c);
      g.fillRect(boxStart, ty.get(tempStep + step), boxWidth, backgroundStripeHeight);
    }
  }
View Full Code Here

TOP

Related Classes of net.sf.nfp.mini.misc.Color

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.