|
1 setRenderHint LineAntialiasing |
|
2 |
|
3 setPen red |
|
4 |
|
5 drawEllipse 0 0 600 400 |
|
6 |
|
7 path_moveTo arcs 300 200 |
|
8 path_arcTo arcs 0 0 600 400 0 10 |
|
9 path_closeSubpath arcs |
|
10 |
|
11 path_moveTo arcs 300 200 |
|
12 path_arcTo arcs 0 0 600 400 20 30 |
|
13 path_closeSubpath arcs |
|
14 |
|
15 path_moveTo arcs 300 200 |
|
16 path_arcTo arcs 0 0 600 400 60 45 |
|
17 path_closeSubpath arcs |
|
18 |
|
19 path_moveTo arcs 300 200 |
|
20 path_arcTo arcs 0 0 600 400 115 60 |
|
21 path_closeSubpath arcs |
|
22 |
|
23 path_moveTo arcs 300 200 |
|
24 path_arcTo arcs 0 0 600 400 180 90 |
|
25 path_closeSubpath arcs |
|
26 |
|
27 path_moveTo arcs 590 200 |
|
28 path_arcTo arcs 10 10 580 380 0 360 |
|
29 path_closeSubpath arcs |
|
30 |
|
31 path_moveTo arcs 300 200 |
|
32 path_arcTo arcs 20 20 560 360 0 -10 |
|
33 path_closeSubpath arcs |
|
34 |
|
35 path_moveTo arcs 300 200 |
|
36 path_arcTo arcs 20 20 560 360 -20 -30 |
|
37 path_closeSubpath arcs |
|
38 |
|
39 path_moveTo arcs 300 200 |
|
40 path_arcTo arcs 20 20 560 360 -60 -45 |
|
41 path_closeSubpath arcs |
|
42 |
|
43 path_moveTo arcs 300 200 |
|
44 path_arcTo arcs 20 20 560 360 -115 -60 |
|
45 path_closeSubpath arcs |
|
46 |
|
47 path_moveTo arcs 300 200 |
|
48 path_arcTo arcs 20 20 560 360 -180 -90 |
|
49 path_closeSubpath arcs |
|
50 |
|
51 setPen black 1 solidline |
|
52 setBrush #3f00ff00 |
|
53 drawPath arcs |
|
54 |
|
55 # Then again with a matrix set... |
|
56 translate 200 400 |
|
57 rotate 10 |
|
58 scale 0.5 0.5 |
|
59 setPen red |
|
60 setBrush nobrush |
|
61 drawEllipse 0 0 600 400 |
|
62 |
|
63 setPen black 1 solidline |
|
64 setBrush #3f0000ff |
|
65 drawPath arcs |