-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathParticle.java
More file actions
66 lines (53 loc) · 1.17 KB
/
Particle.java
File metadata and controls
66 lines (53 loc) · 1.17 KB
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
public class Particle extends Vector
{
// instance variables - replace the example below with your own
private double posY;
private double posX;
private double mass;
private double mag;
private double angle;
public Particle(double _mag, double _angle)
{
// initialise instance variables
super(_mag , _angle);
posY = 0;
posX = 0;
mass = 0;
mag = _mag;
angle = _angle;
}
public Particle(int _posY, int _posX, int _mass, int _mag, int _angle)
{
// initialise instance variables
super(_mag , _angle);
posY = _posY;
posX = _posX;
mass = _mass;
mag = _mag;
angle = _angle;
}
public double getPosX()
{
return posX;
}
public void setPosX(double newPosX)
{
posX = newPosX;
}
public double getPosY()
{
return posY;
}
public void setPosY(double newPosY)
{
posY = newPosY;
}
public double getMass()
{
return mass;
}
public void setMass(int newMass)
{
mass = newMass;
}
}