コード例 #1
0
ファイル: Wire.cs プロジェクト: romanix92/Schemo
 public Wire(Point start, Point end, OutPort first, InPort second)
 {
     outP = first;
     inP = second;
     FindPath(start, end);
     Selected = false;
 }
コード例 #2
0
ファイル: Generator.cs プロジェクト: romanix92/Schemo
 public override void InitPorts()
 {
     m_port = new OutPort(this, "out");
 }
コード例 #3
0
ファイル: VisibleElement.cs プロジェクト: romanix92/Schemo
 public VisibleOutPort(OutPort p, Point pos)
 {
     port = p;
     position = pos;
 }
コード例 #4
0
ファイル: Element.cs プロジェクト: romanix92/Schemo
 public override void InitPorts()
 {
     in1 = new InPort(this, "1");
     in2 = new InPort(this, "2");
     out1 = new OutPort(this, "out");
 }