コード例 #1
0
ファイル: Graph.cs プロジェクト: lcfcosta/Draw2DDemoTest
 public GraphNode(Graph graph, Point point) : this(graph, point.X, point.Y)
 {
 }
コード例 #2
0
ファイル: Graph.cs プロジェクト: lcfcosta/Draw2DDemoTest
 public GraphNode(Graph graph, float x, float y) : base(x, y)
 {
     _graph = graph;
 }