25 lines
505 B
C#
25 lines
505 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Media;
|
|
|
|
namespace Microsoft.Research.DynamicDataDisplay.Common.Palettes
|
|
{
|
|
public class TransparentLimitsPalette : DecoratorPaletteBase
|
|
{
|
|
public TransparentLimitsPalette()
|
|
{
|
|
|
|
}
|
|
|
|
public TransparentLimitsPalette(IPalette palette) : base(palette) { }
|
|
|
|
public override Color GetColor(double t)
|
|
{
|
|
if (t < 0 || t > 1) return Colors.Transparent;
|
|
return Palette.GetColor(t);
|
|
}
|
|
}
|
|
}
|