Skip to content
Snippets Groups Projects
Select Git revision
  • 7171edb047456ed43fc918beb86a75b705a7073a
  • main default protected
2 results

CellGridIterator.java

Blame
  • Forked from YAGOUBI Rim / flooding-template
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Image.java 157 B
    package image;
    
    import javafx.scene.paint.Color;
    
    public interface Image {
        Color getPixelColor(int x, int y);
        int getWidth();
        int getHeight();
    }