[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Gzz-commits] gzz/gfx/demo/nic stencil.py
From: |
Benja Fallenstein |
Subject: |
[Gzz-commits] gzz/gfx/demo/nic stencil.py |
Date: |
Fri, 13 Sep 2002 14:24:25 -0400 |
CVSROOT: /cvsroot/gzz
Module name: gzz
Changes by: Benja Fallenstein <address@hidden> 02/09/13 14:24:25
Modified files:
gfx/demo/nic : stencil.py
Log message:
oops
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gzz/gzz/gfx/demo/nic/stencil.py.diff?tr1=1.1&tr2=1.2&r1=text&r2=text
Patches:
Index: gzz/gfx/demo/nic/stencil.py
diff -c gzz/gfx/demo/nic/stencil.py:1.1 gzz/gfx/demo/nic/stencil.py:1.2
*** gzz/gfx/demo/nic/stencil.py:1.1 Fri Sep 13 14:21:54 2002
--- gzz/gfx/demo/nic/stencil.py Fri Sep 13 14:24:25 2002
***************
*** 7,19 ****
class R(java.lang.Runnable):
def __init__(self, __callable, *args, **keys):
self.__callable = __callable
def run(self):
self.__callable(*self.args, **self.keys)
class StencilBugScene:
def key(self, key): pass
!
def scene(self, vs):
outer = vs.coords.coordsys(0, 'o', 1, 10, 10, 50, 20)
inner = vs.coords.coordsys(outer, 'i', 1, 5, 5, 40, 10)
--- 7,21 ----
class R(java.lang.Runnable):
def __init__(self, __callable, *args, **keys):
self.__callable = __callable
+ self.args = args
+ self.keys = keys
def run(self):
self.__callable(*self.args, **self.keys)
class StencilBugScene:
def key(self, key): pass
!
def scene(self, vs):
outer = vs.coords.coordsys(0, 'o', 1, 10, 10, 50, 20)
inner = vs.coords.coordsys(outer, 'i', 1, 5, 5, 40, 10)
- [Gzz-commits] gzz/gfx/demo/nic stencil.py,
Benja Fallenstein <=