Skip to content

Commit

Permalink
Merge branch 'master' of github.com:mikaem/fenicstools
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaem committed Jun 4, 2014
2 parents 531df58 + 84aec29 commit 1c6d6e1
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 0 deletions.
5 changes: 5 additions & 0 deletions fenicstools/DofMapPlotter.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
__author__ = 'Miroslav Kuchta <mirok@math.uio.no>'
__date__ = '2014-04-23'
__copyright__ = 'Copyright (C) 2013 ' + __author__
__license__ = 'GNU Lesser GPL version 3 or any later version'

from dofmapplotter import *
from dolfin import MPI
from matplotlib.pyplot import show as plt_show
Expand Down
5 changes: 5 additions & 0 deletions fenicstools/dofmapplotter/common.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
__author__ = 'Miroslav Kuchta <mirok@math.uio.no>'
__date__ = '2014-04-23'
__copyright__ = 'Copyright (C) 2013 ' + __author__
__license__ = 'GNU Lesser GPL version 3 or any later version'

import inspect
from os.path import abspath, join
from dolfin import compile_extension_module
Expand Down
5 changes: 5 additions & 0 deletions fenicstools/dofmapplotter/dofhandler.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
__author__ = 'Miroslav Kuchta <mirok@math.uio.no>'
__date__ = '2014-04-23'
__copyright__ = 'Copyright (C) 2013 ' + __author__
__license__ = 'GNU Lesser GPL version 3 or any later version'

from dofmaphandler import DofMapHandler
from common import x_to_str, subspace_index
from dolfin import Cell
Expand Down
5 changes: 5 additions & 0 deletions fenicstools/dofmapplotter/dofmaphandler.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
__author__ = 'Miroslav Kuchta <mirok@math.uio.no>'
__date__ = '2014-04-23'
__copyright__ = 'Copyright (C) 2013 ' + __author__
__license__ = 'GNU Lesser GPL version 3 or any later version'

from common import ParallelColorPrinter
from dolfin import Point

Expand Down
5 changes: 5 additions & 0 deletions fenicstools/dofmapplotter/dofmapplot.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
__author__ = 'Miroslav Kuchta <mirok@math.uio.no>'
__date__ = '2014-04-23'
__copyright__ = 'Copyright (C) 2013 ' + __author__
__license__ = 'GNU Lesser GPL version 3 or any later version'

from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
from meshentityhandler import MeshEntityHandler
Expand Down
5 changes: 5 additions & 0 deletions fenicstools/dofmapplotter/meshentityhandler.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
__author__ = 'Miroslav Kuchta <mirok@math.uio.no>'
__date__ = '2014-04-23'
__copyright__ = 'Copyright (C) 2013 ' + __author__
__license__ = 'GNU Lesser GPL version 3 or any later version'

from common import dmt_number_entities
from dofmaphandler import DofMapHandler
from matplotlib.pyplot import get_cmap
Expand Down

0 comments on commit 1c6d6e1

Please sign in to comment.