-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBase_Shape.pde
73 lines (61 loc) · 1.23 KB
/
Base_Shape.pde
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
//abstract class BaseShape
//{
// public float rotation = 0;
// abstract protected int getX();
// abstract protected int getY();
// private float speedX = 0;
// private float speedY = 0;
// public int speed = 0;
// public int direction;
// protected int advanceSpeedX()
// {
// int advanceX = 0;
// if (speed == 0)
// {
// speedX = 0;
// }
// else
// {
// speedX += (speed) * cos(radians(direction));
// advanceX = round(speedX);
// speedX = speedX - advanceX;
// }
// return advanceX;
// }
// protected int advanceSpeedY()
// {
// int advanceY = 0;
// if (speed == 0)
// {
// speedY = 0;
// }
// else
// {
// speedY += (speed) * sin(radians(direction));
// advanceY = round(speedY);
// speedY = speedY - advanceY;
// }
// return advanceY;
// }
// protected void rotateIt()
// {
// pushMatrix();
// translate(getX(), getY());
// rotate(radians(rotation));
// translate(-getX(), -getY());
// this.drawIt();
// popMatrix();
// }
// abstract protected void drawIt();
// public void draw()
// {
// if (abs(rotation)%360!=0)
// {
// this.rotateIt();
// }
// else
// {
// this.drawIt();
// }
// }
//}