21 references to BlendBrush
ReachFramework (21)
AlphaFlattener\BrushProxy.cs (7)
579BrushProxy result = this.BlendBrush(om); 2151b = b.BlendBrush(_brushList[0] as BrushProxy); 2177b.BlendBrush(bp).AddTo(list); // Blend current with first in list 2181bp.BlendBrush(b).AddTo(list); // Blend current with last in list 3223return one.BlendBrush(two); 3246return brushB.BlendBrush(BrushProxy.CreateColorBrush(colorA)); 3250return BrushProxy.CreateColorBrush(colorA).BlendBrush(brushB);
AlphaFlattener\DrawingContext.cs (8)
292blend = linear.BlendBrush(other); 296blend = other.BlendBrush(linear); 313blend = blend.BlendBrush(other); 317blend = other.BlendBrush(blend); 417blend = radial.BlendBrush(other); 421blend = other.BlendBrush(radial); 436blend = blend.BlendBrush(other); 440blend = other.BlendBrush(blend);
AlphaFlattener\Flattener.cs (3)
527gi.Brush = bi.BlendBrush(bj); 703blendedBrush = under.BlendBrush(blendedBrush); 707blendedPenBrush = under.BlendBrush(blendedPenBrush);
AlphaFlattener\Primitive.cs (3)
1202return brushA.BlendBrush(b); 1240g.Brush = color.BlendBrush(g.Brush); 1248g.Pen.StrokeBrush = color.BlendBrush(g.Pen.StrokeBrush);