Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Desenho.py
diff options
context:
space:
mode:
Diffstat (limited to 'Desenho.py')
-rw-r--r--Desenho.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/Desenho.py b/Desenho.py
index 88c3449..91d19f2 100644
--- a/Desenho.py
+++ b/Desenho.py
@@ -471,22 +471,6 @@ class Desenho:
pixmap.draw_arc(widget.gc_line,False,x,y,dx,dy,0,360*64)
widget.queue_draw()
-
- def pencil(self, widget, coords):
- """Draw a pencil.
-
- @param self -- Desenho.Desenho instance
- @param widget -- Area object (GtkDrawingArea)
- @param coords -- Two value tuple
-
- """
- width, height = widget.window.get_size()
- widget.pixmap_temp.draw_drawable(widget.gc,widget.pixmap, 0 , 0 ,0,0, width, height)
- widget.pixmap.draw_line(widget.gc_line,widget.oldx,widget.oldy,coords[0],coords[1])
- widget.oldx = coords[0]
- widget.oldy = coords[1]
- widget.queue_draw()
-
def clear(self, widget):
"""Clear the drawing.