FL.Link = class Link(object)
=============================================== Link - class to represent link =============================================== CONSTRUCTOR: Link() - generic constructor, creates a Link with zero coordinates Link(Link) - copy constructor Link(index1, index2) - creates a Link between nodes index1 and index2 ATTRIBUTES: parent (read-only) - Link's parent object, Glyph node1, node2 (integer) - indexes of the nodes that are linked OPERATIONS: METHODS ToHint() - transforms link to Hint (and returns it as a result) using parent as a source of node coordinates. Parent must exist
- ToHint(...)
- __delattr__(...)
-
x.__delattr__('name') <==> del x.name
- __getattribute__(...)
-
x.__getattribute__('name') <==> x.name
- __setattr__(...)
-
x.__setattr__('name', value) <==> x.name = value
- __new__ = <built-in method __new__ of type object>
-
T.__new__(S, ...) -> a new object with type S, a subtype of T