WolframLang: Graphics Directives

By Xah Lee. Date: . Last updated: .

Graphics Directives

Graphics Directives are things like color, thickness. They control the style and rendering of the graphics primitives.

Here are commonly used graphics directives:

Graphics directives are used in a list. they have effect on the subsequent graphics primitives.


Graphics[{Red, Circle[ ]} , Axes -> True ]

Graphics[{Red, Circle[ ], Line[{{0,0},{1,1}}] }, Axes -> True ]
WolframLang graphics directive 2024-02-24

Graphics[{Red, Line[{{0,0},{1,1}}], Blue, Thick, Line[{{0,0},{1,2}}] }, Axes -> True ]
WolframLang graphics directive 2024-02-24 FB5n

WolframLang, Graphics Programing