DLForcedGraphView 0.1.1

DLForcedGraphView 0.1.1

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Dec 2014

Maintained by Denis Lebedev.




Objective-C implementation of forced graph using SceneKit.

Demo

demo

Installation

Pod is coming soon.

Usage

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];