# Authors:
#     Loic Gouarin <loic.gouarin@polytechnique.edu>
#     Benjamin Graille <benjamin.graille@math.u-psud.fr>
#
# License: BSD 3 clause

"""
Example of a 2D geometry: the square [0,1]x[0,1] with labels
"""
import pylbm
d = {'box': {'x': [0, 1], 'y': [0, 1], 'label': [0, 1, 2, 3]}}
g = pylbm.Geometry(d)
g.visualize(viewlabel=True)
