DotAttributes contains details about the graph itself, giving insight into how its elements should be rendered.
| 27 | // DotAttributes contains details about the graph itself, giving |
| 28 | // insight into how its elements should be rendered. |
| 29 | type DotAttributes struct { |
| 30 | Nodes map[*Node]*DotNodeAttributes // A map allowing each Node to have its own visualization option |
| 31 | } |
| 32 | |
| 33 | // DotNodeAttributes contains Node specific visualization options. |
| 34 | type DotNodeAttributes struct { |
nothing calls this directly
no outgoing calls
no test coverage detected