Skip to content
Snippets Groups Projects
Circle.java 287 B
Newer Older
  • Learn to ignore specific revisions
  • BasileCouetoux's avatar
    BasileCouetoux committed
    package shape;
    
    import javafx.geometry.Point2D;
    import javafx.scene.canvas.GraphicsContext;
    
    
    1380's avatar
    1380 committed
    public class Circle extends AbstractShape implements Shape {
    
    BasileCouetoux's avatar
    BasileCouetoux committed
    
        public Circle(double x, double y, double sqrt) {
    
        }
    
        @Override
        public void draw(GraphicsContext context) {
    
        }
    }