2 changed files with 12 additions and 88 deletions
@ -1,33 +0,0 @@ |
|||
namespace Avalonia.Animation |
|||
{ |
|||
/// <summary>
|
|||
/// Defines the intermediate color space
|
|||
/// in which the color interpolation will be done.
|
|||
/// </summary>
|
|||
public enum ColorInterpolationMode |
|||
{ |
|||
/// <summary>
|
|||
/// Premultiply the alpha component and interpolate from RGB color space.
|
|||
/// </summary>
|
|||
PremultipliedRGB, |
|||
|
|||
/// <summary>
|
|||
/// Directly interpolate from RGB color space.
|
|||
/// Fastest but the least accurate, perception-wise.
|
|||
/// </summary>
|
|||
RGB, |
|||
|
|||
/// <summary>
|
|||
/// Converts RGB into HSV color space and interpolates.
|
|||
/// Slow but accurate, perception-wise.
|
|||
/// </summary>
|
|||
HSV, |
|||
|
|||
/// <summary>
|
|||
/// Converts RGB into HSV color space and interpolates.
|
|||
/// Slowest but the most accurate, perception-wise.
|
|||
/// </summary>
|
|||
LAB, |
|||
|
|||
} |
|||
} |
|||
Loading…
Reference in new issue