From fe79d1828f9e959faebb9d5696f32ed615b1c1a8 Mon Sep 17 00:00:00 2001 From: DarthAffe Date: Sat, 28 Nov 2015 19:30:08 +0100 Subject: [PATCH] Added some content --- Understanding-CUE.NET-brushes.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/Understanding-CUE.NET-brushes.md b/Understanding-CUE.NET-brushes.md index 30404ce..919c702 100644 --- a/Understanding-CUE.NET-brushes.md +++ b/Understanding-CUE.NET-brushes.md @@ -1 +1,14 @@ -TODO \ No newline at end of file +In CUE.NET a brush is used to apply colors to a _KeyGroup_. +Usually the calculation of the color for a specific key is based on a [gradient](https://github.com/DarthAffe/CUE.NET/wiki/Understanding-CUE.NET-gradients) but there is no need to for this. + +Typically a brush consists of some color information and a shape or something similar that defines how the brush colors keys. + +> The whole software-design of CUE.NET is built around brushes so you should use them for every coloring you do. + +CUE.NET provides by the default four gradients: +* [Solid-Color-Brush](https://github.com/DarthAffe/CUE.NET/wiki/Solid-Color-Brush) +* [Linear-Gradient-Brush](https://github.com/DarthAffe/CUE.NET/wiki/Linear-Gradient-Brush) +* [Radial-Gradient-Brush](https://github.com/DarthAffe/CUE.NET/wiki/Radial-Gradient-Brush) +* [Random-Color-Brush](https://github.com/DarthAffe/CUE.NET/wiki/Random-Color-Brush) + +Of course you can always implement [your own brush](https://github.com/DarthAffe/CUE.NET/wiki/Implementing-an-own-brush). \ No newline at end of file