Hey Ilan!
It looks really cool but I can't really understand what's going on.
Are you simulating some kind of physical process or is it just digital art?
The framerate on my PC is really low... 8 FPS at best... Is it supposed to be this way?
- What version is you B4J?
- What version is you JDK?
- Is you JDK 32 or 64 bit?
For Each p As pixel In pixels
Dim sum As Int = 0
For Each cl As cell In celllist
Dim d As Int = distance(p.x,p.y,cl.x,cl.y)
sum = sum + (500 * (cl.r/d))
sum = Min(sum, 255)
Next
p.color = fx.Colors.To32Bit(fx.Colors.RGB(sum,128,0)) 'HSLtoRGB(sum*5,sum*10,sum*0.8) '
'...
Yeaaaaaah.... Just imagine, making games in B4J (LibGDX style) and uploading them to Steam. Big money!!!maybe opengl would be really a nice addition for b4j
You didn't answer me... Where is you JDK folder? I'm really curious to know the difference between our Jar files...Is it on Program Files or Program Files (x86)?
You didn't answer me... Where is you JDK folder? I'm really curious to know the difference between our Jar files...
So it's 64 bit... same here... hummmm... maybe @Erel will shed some light on this mystery...
Still slow... did you compile on release mode?