Skip to content

Commit 1c6d6e1

Browse files
committed
Merge branch 'master' of github.com:mikaem/fenicstools
2 parents 531df58 + 84aec29 commit 1c6d6e1

File tree

6 files changed

+30
-0
lines changed

6 files changed

+30
-0
lines changed

fenicstools/DofMapPlotter.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
__author__ = 'Miroslav Kuchta <mirok@math.uio.no>'
2+
__date__ = '2014-04-23'
3+
__copyright__ = 'Copyright (C) 2013 ' + __author__
4+
__license__ = 'GNU Lesser GPL version 3 or any later version'
5+
16
from dofmapplotter import *
27
from dolfin import MPI
38
from matplotlib.pyplot import show as plt_show

fenicstools/dofmapplotter/common.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
__author__ = 'Miroslav Kuchta <mirok@math.uio.no>'
2+
__date__ = '2014-04-23'
3+
__copyright__ = 'Copyright (C) 2013 ' + __author__
4+
__license__ = 'GNU Lesser GPL version 3 or any later version'
5+
16
import inspect
27
from os.path import abspath, join
38
from dolfin import compile_extension_module

fenicstools/dofmapplotter/dofhandler.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
__author__ = 'Miroslav Kuchta <mirok@math.uio.no>'
2+
__date__ = '2014-04-23'
3+
__copyright__ = 'Copyright (C) 2013 ' + __author__
4+
__license__ = 'GNU Lesser GPL version 3 or any later version'
5+
16
from dofmaphandler import DofMapHandler
27
from common import x_to_str, subspace_index
38
from dolfin import Cell

fenicstools/dofmapplotter/dofmaphandler.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
__author__ = 'Miroslav Kuchta <mirok@math.uio.no>'
2+
__date__ = '2014-04-23'
3+
__copyright__ = 'Copyright (C) 2013 ' + __author__
4+
__license__ = 'GNU Lesser GPL version 3 or any later version'
5+
16
from common import ParallelColorPrinter
27
from dolfin import Point
38

fenicstools/dofmapplotter/dofmapplot.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
__author__ = 'Miroslav Kuchta <mirok@math.uio.no>'
2+
__date__ = '2014-04-23'
3+
__copyright__ = 'Copyright (C) 2013 ' + __author__
4+
__license__ = 'GNU Lesser GPL version 3 or any later version'
5+
16
from mpl_toolkits.mplot3d import Axes3D
27
import matplotlib.pyplot as plt
38
from meshentityhandler import MeshEntityHandler

fenicstools/dofmapplotter/meshentityhandler.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
__author__ = 'Miroslav Kuchta <mirok@math.uio.no>'
2+
__date__ = '2014-04-23'
3+
__copyright__ = 'Copyright (C) 2013 ' + __author__
4+
__license__ = 'GNU Lesser GPL version 3 or any later version'
5+
16
from common import dmt_number_entities
27
from dofmaphandler import DofMapHandler
38
from matplotlib.pyplot import get_cmap

0 commit comments

Comments
 (0)