\frametitle{Vulling} Voor een vulling kan het \lmint{\filldraw} commando gebruikt worden. \begin{tabular}{m{8cm} m{2cm}} \begin{minted}{latex} \filldraw [color=red] (0,0) -- (2,0) -- (2,1) -- cycle; \end{minted} & \begin{tikzpicture} \filldraw [color=red] (0,0) -- (2,0) -- (2,1) -- cycle; \end{tikzpicture} \end{tabular} \pause De \lmint{fill=} parameter kan gebruikt worden om de vulling een andere kleur te geven dan de rand. \begin{tabular}{m{8cm} m{2cm}} \begin{minted}{latex} \filldraw [color=red,fill=orange,ultra thick] (0,0) -- (2,0) -- (2,1) -- cycle; \end{minted} & \begin{tikzpicture} \filldraw [color=red,fill=orange,ultra thick] (0,0) -- (2,0) -- (2,1) -- cycle; \end{tikzpicture} \end{tabular} \pause Om de patterns library te importeren moet \lmint{\usetikzlibrary{patterns}} in de preamble gezet worden. Met \lmint{pattern=} kies je het patroon en met \lmint{pattern color=} kies je de kleur van het patroon. Zie hoofdstuk 62 voor de patronen waar je uit kunt kiezen \begin{tabular}{m{8cm} m{2cm}} \begin{minted}{latex} \filldraw [pattern=bricks, pattern color = orange] (0,0) -- (2,0) -- (2,1) -- cycle; \end{minted} & \begin{tikzpicture} \filldraw [pattern=bricks, pattern color = orange] (0,0) -- (2,0) -- (2,1) -- cycle; \end{tikzpicture} \end{tabular}