Select Git revision
ShapeWriter.java
Forked from
COUETOUX Basile / graphic-2020
Source project has a limited visibility.
-
BasileCouetoux authoredBasileCouetoux authored
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);
}