Skip to content

Commit a78e960

Browse files
committed
Reduce delay
1 parent 590a055 commit a78e960

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/simulator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ const defaultOptions: ParticlesOptions = {
6767
/** generate initial data for the simulation */
6868
const getInitialData = (maxParticles: number) => {
6969
const data = [];
70-
for (let i = 0; i < maxParticles; i++) data.push(0, 0, 0.1, 0, 0);
70+
for (let i = 0; i < maxParticles; i++) data.push(0, 0, 0, 0, 0);
7171
return data;
7272
};
7373

0 commit comments

Comments
 (0)