about summary refs log tree commit diff stats
path: root/src/types/canvastypes.nim
blob: 350d8cbb5ddd1eb058403d0658c702b27229b22b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
type
  CanvasFillRule* = enum
    cfrNonZero = "nonzero"
    cfrEvenOdd = "evenodd"

  PaintCommand* = enum
    pcSetDimensions, pcFillRect, pcStrokeRect, pcFillPath, pcStrokePath,
    pcFillText, pcStrokeText

  CanvasTextAlign* = enum
    ctaStart = "start"
    ctaEnd = "end"
    ctaLeft = "left"
    ctaRight = "right"
    ctaCenter = "center"