Ejemplo n.º 1
0
 /// <summary>
 /// Negates a color
 /// </summary>
 /// <param name="color">Color to negate</param>
 /// <returns></returns>
 public static Color Negate(Color color)
 {
     return(new Color(Color4.Negate(color.RawColor)));
 }