-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPVector.js
163 lines (138 loc) · 2.56 KB
/
PVector.js
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
static class myPVector
{
float x, y, t_x, t_y;
myPVector(float xx,float yy)
{
x = xx;
y = yy;
}
void add(myPVector v)
{
y+=v.y;
x+=v.x;
}
void sub(myPVector v)
{
y-=v.y;
x-=v.x;
}
void mult(float n)
{
x*=n;
y*=n;
}
void div(float n)
{
x/=n;
y/=n;
}
void normalize()
{
float m=mag();
if(m!=0) div(m);
}
float mag()
{
return sqrt(x*x+y*y);
}
void limit(float max)
{
if(mag() > max)
{
normalize();
mult(max);
}
}
// static
static myPVector add(myPVector v, myPVector v1)
{
myPVector v2 = new myPVector(v.x + v1.x, v.y + v1.y);
return v2;
}
static myPVector sub(myPVector v, myPVector v1)
{
myPVector v2 = new myPVector(v.x - v1.x, v.y - v1.y);
return v2;
}
static myPVector mult(myPVector v, float n)
{
myPVector v1 = new myPVector(v.x*=n, v.y*=n);
return v1;
}
static myPVector div(myPVector v, float n)
{
myPVector v1 = new myPVector(v.x/=n, v.y/=n);
return v1;
}
//static
}
class Mover
{
myPVector location;
myPVector velocity;
myPVector acceleration;
float topspeed;
int color_a, color_b, color_c, translate;
Mover()
{
location = new myPVector(random(width), random(height));
acceleration = new myPVector(0, 0);
velocity = new myPVector(0,0);
topspeed = 4;
color_a = (int)random(0, 255);
color_b = (int)random(0, 255);
color_c = (int)random(0, 255);
translate = (int)random(0, 100);
}
void update()
{
velocity.add(acceleration);
velocity.limit(topspeed);
location.add(velocity);
acceleration.mult(0);
}
void myApplyForce(myPVector force)
{
acceleration.add(force);
}
void checkEdge()
{
if(location.x>width) acceleration.x=0;
else if(location.x<0) location.x=width;
if(location.y>height) location.y=0;
else if(location.y<0) location.y=height;
}
void display()
{
stroke(0);
fill(color_a, color_b, color_c, translate);
ellipse(location.x,location.y,16,16);
}
}
Mover mover;
myPVector wind;
float t;
void setup()
{
background(225);
size(200,200);
smooth();
mover = new Mover();
wind = new myPVector(0, 0.02);
t = 100;
}
void draw()
{
t += 0.01;
wind.normalize();
wind.mult(-1*map(noise(t), 0, 1, 0, 0.01));
mover.myApplyForce(wind);
if(mover.location.y < 0)
{
myPVector fo = new myPVector(-0.1, 0);
mover.myApplyForce(fo);
}
mover.update();
//mover.checkEdge();
mover.display();
}