|
| GraphTracer (const string &title="", const string &className="GraphTracer") |
|
void | set (const json &array2d) |
|
GraphTracer | directed (bool isDirected) |
|
GraphTracer | directed () |
|
GraphTracer | weighted (bool isWeighted) |
|
GraphTracer | weighted () |
|
GraphTracer | layoutCircle () |
|
GraphTracer | layoutTree (const json &root, bool sorted) |
|
GraphTracer | layoutTree (const json &root) |
|
GraphTracer | layoutTree () |
|
GraphTracer | layoutRandom () |
|
void | addNode (const json &id, double weight, double x, double y, int visitedCount, int selectedCount) |
|
void | addNode (const json &id, double weight, double x, double y, int visitedCount) |
|
void | addNode (const json &id, double weight, double x, double y) |
|
void | addNode (const json &id, double weight, double x) |
|
void | addNode (const json &id, double weight) |
|
void | addNode (const json &id) |
|
void | updateNode (const json &id, double weight, double x, double y, int visitedCount, int selectedCount) |
|
void | updateNode (const json &id, double weight, double x, double y, int visitedCount) |
|
void | updateNode (const json &id, double weight, double x, double y) |
|
void | updateNode (const json &id, double weight, double x) |
|
void | updateNode (const json &id, double weight) |
|
void | updateNode (const json &id) |
|
void | removeNode (const json &id) |
|
void | addEdge (const json &source, const json &target, double weight, int visitedCount, int selectedCount) |
|
void | addEdge (const json &source, const json &target, double weight, int visitedCount) |
|
void | addEdge (const json &source, const json &target, double weight) |
|
void | addEdge (const json &source, const json &target) |
|
void | updateEdge (const json &source, const json &target, double weight, int visitedCount, int selectedCount) |
|
void | updateEdge (const json &source, const json &target, double weight, int visitedCount) |
|
void | updateEdge (const json &source, const json &target, double weight) |
|
void | updateEdge (const json &source, const json &target) |
|
void | removeEdge (const json &source, const json &target) |
|
void | visit (const json &target, const json &source, double weight) |
|
void | visit (const json &target, const json &source) |
|
void | visit (const json &target) |
|
void | leave (const json &target, const json &source, double weight) |
|
void | leave (const json &target, const json &source) |
|
void | leave (const json &target) |
|
void | select (const json &target, const json &source) |
|
void | select (const json &target) |
|
void | deselect (const json &target, const json &source) |
|
void | deselect (const json &target) |
|
void | log (LogTracer &logTracer) |
|
void | set () |
|
void | reset () |
|
void | destroy () |
|