Skip to content
Snippets Groups Projects
Commit bb84fda9 authored by BENHILA Douaa's avatar BENHILA Douaa
Browse files

make the list protected so i can use it

parent 3c9a07d9
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@ import java.util.List;
import javafx.scene.canvas.GraphicsContext;
public abstract class AbstractShape implements Shape {
private List<Point2D> points = new ArrayList<>();
protected List<Point2D> points = new ArrayList<>();
public void addPoints(Point2D... points){//Point2D... refere a plusieurs points
for(Point2D point:points) { // utilise la boucle vu que je dois ajouter tous les points
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment