package com.android.droidgraph.material; public class GLColor { public float red = 1.0f; public float green = 1.0f; public float blue = 1.0f; public float alpha = 1.0f; public GLColor(float red, float green, float blue, float alpha) { this.red = red; this.green = green; this.blue = blue; this.alpha = alpha; } }