Ejemplo n.º 1
0
 public static IIntent CreateDiscreteIntent(Color color, double startIntensity, double endIntensity, TimeSpan duration)
 {
     var startingValue = new DiscreteValue(color, startIntensity);
     var endValue = new DiscreteValue(color, endIntensity);
     IIntent intent = new DiscreteLightingIntent(startingValue, endValue, duration);
     return intent;
 }
Ejemplo n.º 2
0
 public override DiscreteValue CombineDiscreteIntensity(DiscreteValue highLayerValue, DiscreteValue lowLayerValue)
 {
     if (highLayerValue.Intensity > 0)
     {
         return highLayerValue;
     }
     return lowLayerValue;
 }
Ejemplo n.º 3
0
        public override DiscreteValue CombineDiscreteIntensity(DiscreteValue highLayerValue, DiscreteValue lowLayerValue)
        {
            if (highLayerValue.Intensity > 0 || !_data.ExcludeZeroValues)
            {
                return highLayerValue;
            }

            return lowLayerValue;
        }
Ejemplo n.º 4
0
 public override DiscreteValue CombineDiscreteIntensity(DiscreteValue highLayerValue, DiscreteValue lowLayerValue)
 {
     double intensity = lowLayerValue.Intensity * (1 - highLayerValue.Intensity);
     highLayerValue.Intensity = Math.Max(intensity, highLayerValue.Intensity);
     return highLayerValue;
 }
Ejemplo n.º 5
0
 public static IIntent CreateDiscreteIntent(Color color, double intensity, TimeSpan duration)
 {
     DiscreteValue discreteValue = new DiscreteValue(color, intensity);
     IIntent intent = new DiscreteLightingIntent(discreteValue, discreteValue, duration);
     return intent;
 }
Ejemplo n.º 6
0
        private static DiscreteValue[] InitializeDiscreteValues(Color c, int number)
        {
            var discreteValues = new DiscreteValue[number];
            for (int i = 0; i < discreteValues.Length; i++)
            {
                discreteValues[i] = new DiscreteValue(c, 0);
            }

            return discreteValues;
        }
Ejemplo n.º 7
0
 public DiscreteValue(DiscreteValue dv)
 {
     _color     = dv.Color;
     _intensity = dv.Intensity;
 }
Ejemplo n.º 8
0
 public override DiscreteValue CombineDiscreteIntensity(DiscreteValue highLayerValue, DiscreteValue lowLayerValue)
 {
     lowLayerValue.Intensity = lowLayerValue.Intensity * highLayerValue.Intensity;
     return lowLayerValue;
 }