Esempio n. 1
0
 public static float[] ToArray(this Color value)
 {
     return(new[] { value.r, value.g, value.b });
 }
Esempio n. 2
0
 public static float[] Scale(this Color value, float scale)
 {
     return(new[] { value.r *scale, value.g *scale, value.b *scale });
 }