fgKerningObjectPair
fontgate.fgKerningObjectPair = class fgKerningObjectPair(object)
KerningObjectPair representation Constructors: fgKerningObjectPair() - default fgKerningObjectPair(fgKerningObjectPair) - copy fgKerningObjectPair( tuple(fgKerningObject, fgKerningObject) ) fgKerningObjectPair('nameLeft', 'nameRight') fgKerningObjectPair(fgKerningObject, fgKerningObject) fgKerningObjectPair('nameLeft', 'nameRight', modeLeft, modeRight) - modeLeft, modeRight must be one of 'glyphMode'/'groupMode'
Methods
- __delattr__(...)
-
x.__delattr__('name') <==> del x.name
- __delitem__(...)
-
x.__delitem__(y) <==> del x[y]
- __delslice__(...)
-
x.__delslice__(i, j) <==> del x[i:j] Use of negative indices is not supported.
- __getattribute__(...)
-
x.__getattribute__('name') <==> x.name
- __getitem__(...)
-
x.__getitem__(y) <==> x[y]
- __getslice__(...)
-
x.__getslice__(i, j) <==> x[i:j] Use of negative indices is not supported.
- __setattr__(...)
-
x.__setattr__('name', value) <==> x.name = value
- __setitem__(...)
-
x.__setitem__(i, y) <==> x[i]=y
- __setslice__(...)
-
x.__setslice__(i, j, y) <==> x[i:j]=y Use of negative indices is not supported.
- asDict(...)
-
represent object as dictionary
- asTuple(...)
-
represent object as tuple
Descriptors
- left
-
(fgKerningObject) - left glyph or group
- right
-
(fgKerningObject) - right glyph or group
Attributes
- __new__ = <built-in method __new__ of type object>
-
T.__new__(S, ...) -> a new object with type S, a subtype of T
asDict
- fontgate.fgKerningObjectPair.asDict = asDict(...)
-
represent object as dictionary
asTuple
- fontgate.fgKerningObjectPair.asTuple = asTuple(...)
-
represent object as tuple
left
- fontgate.fgKerningObjectPair.left
-
(fgKerningObject) - left glyph or group
right
- fontgate.fgKerningObjectPair.right
-
(fgKerningObject) - right glyph or group