bug fix in plotting routine

This commit is contained in:
P.M. Sutter 2016-01-20 09:19:16 -06:00
parent d3cf95bec3
commit ef3139d886

View file

@ -278,7 +278,7 @@ def plotVoidCells(catalog,
for p in xrange(len(volume)): for p in xrange(len(volume)):
if (shiftedPartVoid[p,2]>(cellsMinlimz) and \ if (shiftedPartVoid[p,2]>(cellsMinlimz) and \
shiftedPartVoid[p,2]<(cellsMinlimz) and \ shiftedPartVoid[p,2]<(cellsMaxlimz) and \
radius[p]>cellsradiuslim): radius[p]>cellsradiuslim):
color = 'blue' color = 'blue'
circle = plt.Circle((shiftedPartVoid[p,0], \ circle = plt.Circle((shiftedPartVoid[p,0], \