-
Notifications
You must be signed in to change notification settings - Fork 0
/
TestShape.java
33 lines (29 loc) · 1.04 KB
/
TestShape.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package prg.es4;
import prg.es4.Rectangle;
public class TestShape{
public static void main(String[] args) {
//TEST COSTRUTTORI
//inizializzo oggetti con valori arbitrari
//Shape shape = new Shape(); //da errore in comppilazione perchè Shape è abstract
Rectangle rettangolo = new Rectangle(8,4);
Square quadrato = new Square(22);
Circle cerchio = new Circle(20);
//TEST toString()
System.out.println(rettangolo.toString());
System.out.println(quadrato.toString());
System.out.println(cerchio.toString());
//TEST FUNZIONI set E toPrint()
rettangolo.fillOn().setColour("Orange");
rettangolo.setWidth(20).setLength(10);
rettangolo.scale(0.5);
rettangolo.draw();
quadrato.fillOn().setColour("Red");
quadrato.setSide(10);
rettangolo.scale(0.5);
quadrato.draw();
cerchio.fillOn().setColour("Green"); //Green non sarà considerato un colore valido, dunque stamperà errore (vedi setOfColours[] definito nella classe "Shape")
cerchio.setRadius(23);
cerchio.scale(0.5);
cerchio.draw();
}
}