-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEnums.cs
More file actions
35 lines (32 loc) · 925 Bytes
/
Enums.cs
File metadata and controls
35 lines (32 loc) · 925 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
namespace RedKnack.PainterlyPlugin
{
public enum StrokeStyle
{
OilPaint, // Thick curved strokes following ETF
Watercolor, // Thin, semi-transparent strokes
Acrylic, // Medium strokes, high contrast
Pastel, // Soft, blended strokes
Sketch, // Fine hatching along ETF
}
public enum TextureType
{
None,
Canvas, // Woven canvas grain via quilting
OilImpasto, // Thick paint ridges
BrushSurface, // Bristle texture overlay
}
public enum StrokeOrientationMode
{
ETF, // Edge Tangent Flow (image-driven)
Fixed, // User-defined fixed angle
Radial, // Radial from center
Concentric, // Concentric rings
}
public enum ColorJitterMode
{
None,
Hue,
Luminance,
Both,
}
}