Esempio n. 1
0
        protected void AddOutputNeuron(Neuron neuron)
        {
            SingleOutput so = new SingleOutput(neuron);

            so.Location = new Point(0, 17 * items.Count);
            items.Add(so);
            Controls.Add(so);
        }
 protected void AddOutputNeuron(Neuron neuron)
 {
     SingleOutput so = new SingleOutput(neuron);
     so.Location = new Point(0,17*items.Count);
     items.Add(so);
     Controls.Add(so);
 }