-
Notifications
You must be signed in to change notification settings - Fork 2
/
PhysikTest.java
40 lines (36 loc) · 1.06 KB
/
PhysikTest.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
34
35
36
37
38
39
40
/**
* Beschreiben Sie hier die Klasse PhysikTest.
*
* @author (Ihr Name)
* @version (eine Versionsnummer oder ein Datum)
*/
public class PhysikTest
extends SPIEL
{
private RECHTECK boden;
private RECHTECK ding;
public PhysikTest()
{
this.boden = new RECHTECK(15,1);
this.boden.setzeMittelpunkt(0,-8);
this.boden.setzeElastizitaet(0.9);
this.boden.setzeReibung(0.2);
this.boden.machePassiv();
this.ding = new RECHTECK(2,2);
this.ding.setzeMittelpunkt(0, 5);
this.ding.setzeFarbe("blau");
this.ding.setzeElastizitaet(0.8);
this.ding.setzeReibung(0.2);
this.ding.drehenUm(ea.Random.nextInteger(0, 90));
this.ding.setzeRotationBlockiert(false);
this.ding.macheAktiv();
}
@Override
public void tasteReagieren( int taste )
{
this.ding.setzeMittelpunkt(0,0);
this.ding.setzeGeschwindigkeit(0,0);
this.ding.drehenUm(ea.Random.nextInteger(0, 90));
this.ding.setzeWinkelgeschwindigkeit(0);
}
}