I have an array that will be 100 * 100, I can access any point like
map[x][y]
It kinda will look like this:
for i in map:
for ii in i:
print ii,
print '\n',
output:
. . . . . . . . . . .
. . . . . . . . . . .
. . . . . . . . . . .
. . . . . . . . . . .
. . . . . . . . . . .
. . . . . . . . . . .
. . . . . . . . . . .
. . . . . . . . . . .
. . . . . . . . . . .
. . . . . . . . . . .
. . . . . . . . . . .
I want to make a circle in it like:
. . . . . # . . . . .
. . . # # . # # . . .
. . # . . . . . # . .
. # . . . . . . . # .
. # . . . . . . . # .
# . . . . . . . . . #
. # . . . . . . . # .
. # . . . . . . . # .
. . # . . . . . # . .
. . . # # . # # . . .
. . . . . # . . . . .
How can i do this?
I want to try and make a triangulation system where i will find the point that 3 circles will overlap. Is there any other way I can achieve this.
I just want to get the distance (dots from center) and the direction.