-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMolecule.cs
76 lines (62 loc) · 1.31 KB
/
Molecule.cs
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
74
75
76
using System.Drawing;
namespace PhisicExperiments
{
public class Molecule
{
private double Temperature;
private int X;
private int Y;
private Vector vector;
public Molecule()
{
}
public Molecule(Point p, double t, Vector v)
{
X = p.X;
Y = p.Y;
Temperature = t;
vector = v;
}
public double GetTemperature()
{
return Temperature;
}
public void SetTemperature(double temperature)
{
Temperature = temperature;
}
public void ChangeTemperature(double delta)
{
Temperature += delta;
}
public void SetLocation(int x, int y)
{
X = x;
Y = y;
}
public void SetLocation(Point p)
{
SetLocation(p.X, p.Y);
}
public Point GetLocation()
{
return new Point(X, Y);
}
public int GetX()
{
return X;
}
public int GetY()
{
return Y;
}
public void SetVector(Vector v)
{
vector = v;
}
public Vector GetVector()
{
return vector;
}
}
}