From 3b4573301c41e4eb578541839c42b902d695713e Mon Sep 17 00:00:00 2001 From: Philip Eisenlohr Date: Fri, 21 Jun 2013 19:10:10 +0000 Subject: [PATCH] removed now obsolete Moore neighborhood array --- processing/pre/geom_stretchInterfaces.py | 28 ------------------------ 1 file changed, 28 deletions(-) diff --git a/processing/pre/geom_stretchInterfaces.py b/processing/pre/geom_stretchInterfaces.py index 856f3bce1..c4cca63d9 100755 --- a/processing/pre/geom_stretchInterfaces.py +++ b/processing/pre/geom_stretchInterfaces.py @@ -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'],