Skip to content
Snippets Groups Projects
Select Git revision
  • 39f46b80d8b9c78a07f78ae3071e1adecaf2789a
  • main default protected
  • correction_video
  • going_further
  • ImprovedMouseInteraction
  • final2023
  • template
  • ModifGUI
8 results

SeedsAutomaton.java

Blame
  • Forked from NAVES Guyslain / Game of life 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();
    }