from serpentTools.plot import cartMeshPlot
from numpy import arange
data = arange(100).reshape(10, 10)
x = y = arange(11)
cartMeshPlot(data, x, y, cbarLabel='Demo')
