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

main.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Shape.java 213 B
    package shape;
    
    import javafx.geometry.Point2D;
    import javafx.scene.canvas.GraphicsContext;
    
    public interface Shape {
        int pointsCount();
        Point2D point(int index);
        void draw(GraphicsContext context);
    }