Changeset 26
- Timestamp:
- 01/22/08 05:28:22 (4 years ago)
- Files:
-
- trunk/robofab/Lib/robofab/pens/digestPen.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/robofab/Lib/robofab/pens/digestPen.py
r1 r26 30 30 31 31 def addComponent(self, baseGlyphName, transformation): 32 self._data.append((baseGlyphName, tuple(transformation))) 32 t = [] 33 for v in transformation: 34 if int(v) == v: 35 t.append(int(v)) 36 else: 37 t.append(v) 38 self._data.append((baseGlyphName, tuple(t))) 33 39 34 40 def getDigest(self):
