()
| 27 | } |
| 28 | |
| 29 | public int toColor() { |
| 30 | return ((Math.round(_a * 255f)) << 24) |
| 31 | | ((Math.round(_r * 255f)) << 16) |
| 32 | | ((Math.round(_g * 255f)) << 8) |
| 33 | | (Math.round(_b * 255f)); |
| 34 | } |
| 35 | |
| 36 | public float[] flatten() { |
| 37 | return new float[] {_r, _g, _b, _a}; |