java.lang.Object
com.marginallyclever.nodegraphcore.Node
com.marginallyclever.donatello.nodes.images.LoadImage

public class LoadImage
extends Node
This Node can load a Swing BufferedImage.
Since:
2022-02-23
  • Constructor Details

    • LoadImage

      public LoadImage()
      Constructor for subclasses to call.
    • LoadImage

      public LoadImage​(java.lang.String filename)
      Constructor that sets a starting value
      Parameters:
      filename - the starting value.
  • Method Details

    • create

      public Node create()
      Description copied from class: Node
      Return one new instance of this type of Node. Override this method in derived classes.
      Specified by:
      create in class Node
      Returns:
      One new instance of this type of Node.
    • update

      public void update()
      Description copied from class: Node
      Override this method to provide the custom behavior of this node. Runs regardless of dirty inputs or outputs.
      Specified by:
      update in class Node