Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6615599

Improvement of Color.darker() algoritm

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Unresolved
    • Icon: P4 P4
    • None
    • 6
    • client-libs
    • x86
    • windows_vista

      A DESCRIPTION OF THE REQUEST :
      Just a minor optimization of the darker method.

      Each rgb component * FACTOR constant (is 0.7) is allways >=0

      Is
      public Color darker() {
      return new Color(Math.max((int)(getRed() *FACTOR), 0),
      Math.max((int)(getGreen()*FACTOR), 0),
      Math.max((int)(getBlue() *FACTOR), 0));
          }

      Should be
      public Color darker() {
      return new Color((int)(getRed() *FACTOR),
      (int)(getGreen()*FACTOR),
      (int)(getBlue() *FACTOR));
          }

      JUSTIFICATION :
      Speed

            dav Andrei Dmitriev (Inactive)
            dav Andrei Dmitriev (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Imported:
              Indexed: