from serpentTools.plot import cartMeshPlot
from numpy import arange
data = arange(100).reshape(10, 10)
cartMeshPlot(data, thresh=50)
