Package cl.alejo.jcsim.csim.gates

Examples of cl.alejo.jcsim.csim.gates.IconGate.paint()


  private void drawGates(Graphics2D gr, Box boxViewport) {
    for (Iterator iter = _icons.iterator(); iter.hasNext();) {
      IconGate icon = (IconGate) iter.next();
      if (boxViewport.containsSomeCorner(icon))
        icon.paint(gr);
    }
  }

  // TODO usarlo
  private void add(Circuit circuit, int x, int y) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.