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

Main.java

Blame
  • Forked from LABOUREL Arnaud / ANTLR introduction
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Shape.java 316 B
    package TP5.shape;
    
    import javafx.geometry.Point2D;
    import javafx.scene.canvas.GraphicsContext;
    import javafx.scene.paint.Color;
    
    public interface Shape {
        void paint(GraphicsContext graphicsContext);
        boolean contains(double x, double y);
        void translate(double dx, double dy);
        boolean isFinished();
    }