Show HN: GameDev News- It's like DN or HN for people who make games
news.powerupgames.io
Show HN: GameDev News- It's like DN or HN for people who make games
1–9 of 9 posts
Re: Show HN: GameDev News- It's like DN or HN for people who make games
#2Re: Show HN: GameDev News- It's like DN or HN for people who make games
#3Re: Show HN: GameDev News- It's like DN or HN for people who make games
#4Re: Show HN: GameDev News- It's like DN or HN for people who make games
#5Looks nice. Would i be able to post code? That's a feature I would really like to see in a site like this.
Just indent four spaces at the left margin and you have a readable listing:
# Copyright (c) 2013, P. Lutus http://arachnoid.com
# Released under the GPL http://www.gnu.org/licenses/gpl.html
from numpy import arange
# dimensional parameters for the set
yl = -1.2
yh = 1.2
ys = .05
xl = -2.05
xh = 0.55
xs = 0.03
def mandelbrot(c):
z = 0
for n in range(10):
z = z*z + c
if(abs(z) > 2):
return '.'
return '*'
s = ''
for y in arange(yl,yh,ys):
for x in arange(xl,xh,xs):
s += mandelbrot(complex(x,y))
s += '\n'
print(s)
Result:
.......................................................................................
.......................................................................................
..............................................................**.......................
...............................................................*.......................
................................................................*..**..................
................................................................***....................
...............................................................****....................
...........................................................***********.................
............................................................**********.................
...........................................................***********.................
...................................................*.......***********..........*......
.................................................****..********************.....*......
................................................***********************************....
.................................................********************************......
...............................................**********************************......
.............................................************************************......
.............................................*************************************.....
..........................**......*.........*****************************************..
............................***********.....***************************************....
............................********************************************************...
..........................*********************************************************....
.....................*....*********************************************************....
......................************************************************************.....
.....................***********************************************************.......
..*****************************************************************************........
.....................***********************************************************.......
......................************************************************************.....
.....................*....*********************************************************....
..........................*********************************************************....
............................********************************************************...
............................***********.....***************************************....
..........................**......*.........*****************************************..
.............................................*************************************.....
.............................................************************************......
...............................................**********************************......
.................................................********************************......
................................................***********************************....
.................................................****..********************.....*......
...................................................*.......***********..........*......
...........................................................***********.................
............................................................**********.................
...........................................................***********.................
...............................................................****....................
................................................................***....................
................................................................*..**..................
...............................................................*.......................
..............................................................**.......................
.......................................................................................Re: Show HN: GameDev News- It's like DN or HN for people who make games
#6Looks nice. Would i be able to post code? That's a feature I would really like to see in a site like this.
> Would i be able to post code? That's a feature I would really like to see in a site like this. Just indent four spaces at the left margin and you have a readable listing: # Copyright (c) 2013, P. Lutus http://arachnoid.com # Released under the GPL http://www.gnu.org/licenses/gpl.html from numpy import arange # dimensional parameters for the set yl = -1.2 yh = 1.2 ys = .05 xl = -2.05 xh = 0.55 xs = 0.03 def mandelbr…
Re: Show HN: GameDev News- It's like DN or HN for people who make games
#7Re: Show HN: GameDev News- It's like DN or HN for people who make games
#8Re: Show HN: GameDev News- It's like DN or HN for people who make games
#9I have actually started making a game as a side project and was looking for a game development/design counter part for HN.