Java Integer to intToBlue(int color)

Here you can find the source of intToBlue(int color)

Description

int To Blue

License

Open Source License

Declaration

public static float intToBlue(int color) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static float intToBlue(int color) {
        int blue = color & 0xff;
        return ((float) blue) / 255;
    }//from   ww w  .ja v  a 2  s.c  o m
}

Related

  1. intToBase32(int n)
  2. intToBasicType(int i, Class clazz)
  3. intToBcd(int src, int len, int flag)
  4. intToBigEndian(int value, byte[] array, int index)
  5. intToBigEndianByteArray(int in)
  6. IntToBuf2BE(int val, byte[] buf, int offset)
  7. intToBuffer(int i, byte[] ioBuffer)
  8. intToCodeString(int value)
  9. intToColour(int colour)