mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-07-21 20:51:09 +02:00
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@74164 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
19 lines
319 B
Python
19 lines
319 B
Python
snippet_normalize(cr, width, height)
|
|
|
|
dashes = [ 0.10, # ink
|
|
0.02, # skip
|
|
0.05, # ink
|
|
0.02, # skip
|
|
]
|
|
|
|
cr.set_dash(dashes, 0)
|
|
|
|
cr.move_to(0.5, 0.1)
|
|
cr.line_to(0.9, 0.9)
|
|
cr.rel_line_to(-0.4, 0.0)
|
|
cr.curve_to (0.2, 0.9, 0.2, 0.5, 0.5, 0.5)
|
|
cr.close_path()
|
|
|
|
cr.stroke()
|
|
|