Skip to content
Snippets Groups Projects
Select Git revision
  • bac1a09390c5dac7d4168e63462e1989c1db130c
  • master default protected
2 results

Ratio.java

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