Changeset 1639
- Timestamp:
- 07/16/07 09:54:23 (1 year ago)
- Files:
-
- gaphas/branches/hw/gaphas/sexamples.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gaphas/branches/hw/gaphas/sexamples.py
r1634 r1639 21 21 Vector(5, 50, 5, -25) -> A=(5, 50), B=(10, 25) 22 22 """ 23 def _cproj(self, c, data): 23 def _cproj(self, c, *args, **kw): 24 data = kw['data'] 24 25 for v in c.variables(): 25 26 v0 = data[v] … … 27 28 28 29 29 def _iproj(self, c, data): 30 def _iproj(self, c, *args, **kw): 31 data = kw['data'] 30 32 for v in c.variables(): 31 33 v0 = data[v]
