In Simulide 0.4.15 I create two pins:
How they link together in ways that what goes into one goes out of the other and vice versa.
Thank you
Greetings
- Code:
m_pin.resize(2);
pinid = id;
pinid.append(QString("-pin1"));
pinpos = QPoint(0,0);
pin1 = new Pin( 0, pinpos, pinid, 0, this);
pin1->setLabelText( "pin1" );
m_pin[0] = pin1;
pinid = id;
pinid.append(QString("-pin2"));
pinpos = QPoint(8,0);
pin2 = new Pin( 0, pinpos, pinid, 0, this);
pin2->setLabelText( "pin2" );
m_pin[1] = pin2;
How they link together in ways that what goes into one goes out of the other and vice versa.
Thank you
Greetings