File: gradient.py

package info (click to toggle)
python-enable 4.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 7,280 kB
  • ctags: 13,899
  • sloc: cpp: 48,447; python: 28,502; ansic: 9,004; makefile: 315; sh: 44
file content (91 lines) | stat: -rw-r--r-- 2,654 bytes parent folder | download | duplicates (2)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
from numpy import array, pi
from os.path import splitext

from enable.kiva_graphics_context import GraphicsContext
from kiva.fonttools import Font
from kiva import constants


def draw(gc):
    # colors are 5 doubles: offset, red, green, blue, alpha
    starting_color = array([0.0, 1.0, 1.0, 1.0, 1.0])
    ending_color = array([1.0, 0.0, 0.0, 0.0, 1.0])

    gc.clear()

    # diagonal
    with gc:
        gc.rect(50,25,150,100)
        gc.linear_gradient(50,25,150,125,
                           array([starting_color, ending_color]),
                           "pad")
        gc.draw_path(constants.FILL)

    # vertical top to bottom
    with gc:
        gc.rect(50,150,150,50)
        gc.linear_gradient(0,200, 0,150,
                           array([starting_color, ending_color]),
                           "pad")
        gc.draw_path(constants.FILL)
    # horizontal left to right
    with gc:
        gc.rect(50,200,150,50)
        gc.linear_gradient(50,0, 150,0,
                           array([starting_color, ending_color]),
                           "pad")
        gc.draw_path(constants.FILL)

    # vertical bottom to top
    with gc:
        gc.rect(50,275,150,50)
        gc.linear_gradient(0,275, 0,325,
                           array([starting_color, ending_color]),
                           "pad")
        gc.draw_path(constants.FILL)
    # horizontal right to left
    with gc:
        gc.rect(50,325,150,50)
        gc.linear_gradient(200,0, 100,0,
                           array([starting_color, ending_color]),
                           "pad")
        gc.draw_path(constants.FILL)

    # radial
    with gc:
        gc.arc(325, 75, 50, 0.0, 2*pi)
        gc.radial_gradient(325, 75, 50, 325, 75,
                           array([starting_color, ending_color]),
                           "pad")
        gc.draw_path(constants.FILL)

    # radial with focal point in upper left
    with gc:
        gc.arc(325, 200, 50, 0.0, 2*pi)
        gc.radial_gradient(325, 200, 50, 300, 225,
                           array([starting_color, ending_color]),
                           "pad")
        gc.draw_path(constants.FILL)

    # radial with focal point in bottom right
    with gc:
        gc.arc(325, 325, 50, 0.0, 2*pi)
        gc.radial_gradient(325, 325, 50, 350, 300,
                           array([starting_color, ending_color]),
                           "pad")
        gc.draw_path(constants.FILL)

    return


def main():
    gc = GraphicsContext((500, 500))

    gc.scale_ctm(1.25, 1.25)
    draw(gc)

    gc.save(splitext(__file__)[0]+'.png', file_format='png')


if __name__ == '__main__':
    main()