21 references to BlendBrush
ReachFramework (21)
AlphaFlattener\BrushProxy.cs (7)
575BrushProxy result = this.BlendBrush(om); 2145b = b.BlendBrush(_brushList[0] as BrushProxy); 2171b.BlendBrush(bp).AddTo(list); // Blend current with first in list 2175bp.BlendBrush(b).AddTo(list); // Blend current with last in list 3221return one.BlendBrush(two); 3244return brushB.BlendBrush(BrushProxy.CreateColorBrush(colorA)); 3248return BrushProxy.CreateColorBrush(colorA).BlendBrush(brushB);
AlphaFlattener\DrawingContext.cs (8)
289blend = linear.BlendBrush(other); 293blend = other.BlendBrush(linear); 310blend = blend.BlendBrush(other); 314blend = other.BlendBrush(blend); 414blend = radial.BlendBrush(other); 418blend = other.BlendBrush(radial); 433blend = blend.BlendBrush(other); 437blend = other.BlendBrush(blend);
AlphaFlattener\Flattener.cs (3)
520gi.Brush = bi.BlendBrush(bj); 696blendedBrush = under.BlendBrush(blendedBrush); 700blendedPenBrush = under.BlendBrush(blendedPenBrush);
AlphaFlattener\Primitive.cs (3)
1198return brushA.BlendBrush(b); 1236g.Brush = color.BlendBrush(g.Brush); 1244g.Pen.StrokeBrush = color.BlendBrush(g.Pen.StrokeBrush);