Back to project page Visu.
The source code is released under:
Apache License
If you think the Android project Visu listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.ufavaloro.android.visu.draw; //from w w w .jav a 2 s . co m public class RGB { private int[] rgb = new int[3]; public RGB(int r, int g, int b) { rgb[0] = r; rgb[1] = g; rgb[2] = b; } public int[] getRGB() { return rgb; } }