removed now obsolete Moore neighborhood array

This commit is contained in:
Philip Eisenlohr 2013-06-21 19:10:10 +00:00
parent 5d15f68914
commit 3b4573301c
1 changed files with 0 additions and 28 deletions

View File

@ -27,34 +27,6 @@ class extendedOption(Option):
#--------------------------------------------------------------------------------------------------
# MAIN
#--------------------------------------------------------------------------------------------------
neighborhood = numpy.array([ [-1,-1,-1],
[ 0,-1,-1],
[ 1,-1,-1],
[-1, 0,-1],
[ 0, 0,-1],
[ 1, 0,-1],
[-1, 1,-1],
[ 0, 1,-1],
[ 1, 1,-1],
[-1,-1, 0],
[ 0,-1, 0],
[ 1,-1, 0],
[-1, 0, 0],
[ 0, 0, 0],
[ 1, 0, 0],
[-1, 1, 0],
[ 0, 1, 0],
[ 1, 1, 0],
[-1,-1, 1],
[ 0,-1, 1],
[ 1,-1, 1],
[-1, 0, 1],
[ 0, 0, 1],
[ 1, 0, 1],
[-1, 1, 1],
[ 0, 1, 1],
[ 1, 1, 1],
],'i')
identifiers = {
'grid': ['a','b','c'],