change the V setup

This commit is contained in:
tTh
2026-06-17 07:36:14 +02:00
parent 6d5c8d6c5f
commit 95e89f0c5f

View File

@@ -85,13 +85,13 @@ module bloubspace
blb%pz = coefxyz * (rand() - 0.50)
blb%vx = (rand() / 9.000)
! if (blb%px .LT. 0.0) blb%vx = -blb%vx
if (blb%px .LT. 0.0) blb%vx = -blb%vx
blb%vy = -0.10 + (rand() / 11.000)
! if (blb%py .LT. 0.0) blb%vy = -blb%vy
if (blb%py .LT. 0.0) blb%vy = -blb%vy
blb%vz = (rand() / 10.000)
! if (blb%pz .LT. 0.0) blb%vz = -blb%vz
if (blb%pz .LT. 0.0) blb%vz = -blb%vz
blb%red = mod(irand(), 256)
blb%green = 127 + mod(irand(), 127)