Ejemplo n.º 1
0
 public SelectOutput(UIElement image, InPoint inPoint, OutPoint outPoint1, OutPoint outPoint2)
 {
     Image = image;
     In    = inPoint;
     Out1  = outPoint1;
     Out2  = outPoint2;
 }
Ejemplo n.º 2
0
        private InPoint CreateInPoint()
        {
            InPoint inPoint = new InPoint(CreatePointImage(), CreatePointLable());

            canvas.Children.Add(inPoint.Image);
            canvas.Children.Add(inPoint.Label);
            return(inPoint);
        }
Ejemplo n.º 3
0
 public Delay(UIElement image, InPoint inPoint, OutPoint outPoint)
 {
     Image = image;
     In    = inPoint;
     Out   = outPoint;
     DelayDistributions.min = 0;
     DelayDistributions.max = 1;
 }
Ejemplo n.º 4
0
 public Queue(UIElement image, InPoint inPoint, OutPoint outPoint, OutPoint throwOut, OutPoint throwOut2)
 {
     Image     = image;
     In        = inPoint;
     Out       = outPoint;
     ThrowOut  = throwOut;
     ThrowOut2 = throwOut2;
     TimeLimitDistributions.min = 0;
     TimeLimitDistributions.max = 1;
 }
Ejemplo n.º 5
0
 public Sink(UIElement image, InPoint inPoint)
 {
     Image = image;
     In    = inPoint;
 }