-
Notifications
You must be signed in to change notification settings - Fork 2
/
env.txt
37 lines (26 loc) · 819 Bytes
/
env.txt
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
# application type, and max number of boids for sustainable 30 fps
# type 0 CPU without tree, max 1000 boids
# type 1 CPU with tree, max 10 000 boids
# type 2 GPU naive, max 20000 - 30000 boids
# type 3 GPU with grid, max 120000 boids
appType int 3
# power of 2 defining number of boids
boidCount int 18
# lower space limit
spaceLow vec3 -1000 -600 -200
# upper space limit
spaceHigh vec3 1000 600 200
# color - 0 = light, 1 = dark
dark int 1
# max flocking zone
flockingZone float 20
# speed factor fo clamping speed
speedFactor float 2
# maximal limit of force to be applied in one frame per boid
forceLimit float 0.1
# maximal size of tree (# of nodes) to be copied to GPU for visualization
treeMemoryLimit int 4098
# size of boid for visualization
boidSize float 2
# camera settings
camera vec3 0 0 1400