예제 #1
0
 public Graph()
 {
     _nodes  = new List <GraphNode>();
     _edges  = new List <GraphEdge>();
     _layout = new GraphLayout(this);
 }
예제 #2
0
파일: Graph.cs 프로젝트: fugaku/scriptsharp
 public Graph() {
     _nodes = new List<GraphNode>();
     _edges = new List<GraphEdge>();
     _layout = new GraphLayout(this);
 }