Skip to content
Snippets Groups Projects
Commit 14cad9b2 authored by NAVES Guyslain's avatar NAVES Guyslain
Browse files

Delete Shapes.java

parent 65f06d8c
No related branches found
No related tags found
No related merge requests found
package fr.univamu;
import fr.univamu.geo.Shape;
import fr.univamu.geo.Star;
import fr.univamu.geo.Union;
import java.util.List;
public class Shapes {
public static Shape stars() {
return new Union(List.of(
new Star(5,2).scale(1.5),
new Star(9,2).scale(1.5).translate(-4,0),
new Star(9,4).scale(1.5).translate(4,0)
));
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment