
Public Member Functions | |
| def | __eq__ |
| def | __hash__ |
| def | __init__ |
| def | get_destination |
| def | get_source |
| def | parse_node_ref |
| def | to_string |
Public Attributes | |
| obj_dict | |
A graph edge.
This class represents a graph's edge with all its attributes.
edge(src, dst, attribute=value, ...)
src: source node's name
dst: destination node's name
All the attributes defined in the Graphviz dot language should
be supported.
Attributes can be set through the dynamically generated methods:
set_[attribute name], i.e. set_label, set_fontname
or directly by using the instance's special dictionary:
Edge.obj_dict['attributes'][attribute name], i.e.
edge_instance.obj_dict['attributes']['label']
edge_instance.obj_dict['attributes']['fontname']
| def rqt_decision_graph.pydot.Edge.__init__ | ( | self, | |
src = '', |
|||
dst = '', |
|||
obj_dict = None, |
|||
| attrs | |||
| ) |
| def rqt_decision_graph.pydot.Edge.__eq__ | ( | self, | |
| edge | |||
| ) |
| def rqt_decision_graph.pydot.Edge.__hash__ | ( | self | ) |
| def rqt_decision_graph.pydot.Edge.get_destination | ( | self | ) |
| def rqt_decision_graph.pydot.Edge.get_source | ( | self | ) |
| def rqt_decision_graph.pydot.Edge.parse_node_ref | ( | self, | |
| node_str | |||
| ) |
| def rqt_decision_graph.pydot.Edge.to_string | ( | self | ) |
Reimplemented from rqt_decision_graph.pydot.Common.