CocoaPods trunk is moving to be read-only. Read more on the blog, there are 13 months to go.
| TestsTested | ✓ |
| LangLanguage | Obj-CObjective C |
| License | MIT |
| ReleasedLast Release | Dec 2014 |
Maintained by Denis Lebedev.
Objective-C implementation of forced graph using SceneKit.
Pod is coming soon.
Add DLForcedGraphView as a subview and add graph edges to display:
NSArray *edges = @[
DLMakeEdge(0, 1),
DLMakeEdge(1, 2),
DLMakeEdge(2, 0),
];
[forcedGraphView.graphScene addEdges:edges];