Ejemplo n.º 1
0
 /// <summary>
 /// Default constructor
 /// </summary>
 SplineWireTerminal()
 {
     _wiringBehavior = new SplineWiringBehavior();
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Constructs a new instance
 /// </summary>
 /// <param name="direction">Direction of the terminal</param>
 /// <param name="dataType">Initial data type of the terminal</param>
 /// <param name="identifier">Node specific terminal identifier</param>
 /// <param name="hotPoint">Location, relative to the node, of the hotspot of this terminal</param>
 public SplineWireTerminal(Direction direction, NIType dataType, string identifier, SMPoint hotPoint)
     : base(direction, dataType, identifier, hotPoint)
 {
     _wiringBehavior = new SplineWiringBehavior();
 }