diff --git a/gprMax/grid.py b/gprMax/grid.py index 46f260ae..241dc255 100644 --- a/gprMax/grid.py +++ b/gprMax/grid.py @@ -17,14 +17,14 @@ # along with gprMax. If not, see . import numpy as np -import matplotlib.pyplot as plt from gprMax.constants import c, floattype, complextype from gprMax.materials import Material -class Grid(): - +class Grid(object): + """Generic grid/mesh.""" + def __init__(self, grid): self.nx = grid.shape[0] self.ny = grid.shape[1]