new class should be accesible as damask.VTK

This commit is contained in:
Martin Diehl 2020-03-11 06:49:14 +01:00
parent 9878ddc550
commit a024ec378a
1 changed files with 9 additions and 6 deletions

View File

@ -9,20 +9,23 @@ with open(os.path.join(os.path.dirname(__file__),'VERSION')) as f:
# classes # classes
from .environment import Environment # noqa from .environment import Environment # noqa
from .table import Table # noqa from .table import Table # noqa
from .asciitable import ASCIItable # noqa from .ktv import VTK # noqa
from .config import Material # noqa
from .colormaps import Colormap, Color # noqa from .colormaps import Colormap, Color # noqa
from .rotation import Rotation # noqa from .rotation import Rotation # noqa
from .lattice import Symmetry, Lattice# noqa from .lattice import Symmetry, Lattice# noqa
from .orientation import Orientation # noqa from .orientation import Orientation # noqa
from .result import Result # noqa from .result import Result # noqa
from .result import Result as DADF5 # noqa
from .geom import Geom # noqa from .geom import Geom # noqa
from .solver import Solver # noqa from .solver import Solver # noqa
from .test import Test # noqa
# compatibility hack
from .result import Result as DADF5 # noqa
# deprecated
from .asciitable import ASCIItable # noqa
from .util import extendableOption # noqa from .util import extendableOption # noqa
from .config import Material # noqa
from .test import Test # noqa
# functions in modules # functions in modules
from . import mechanics # noqa from . import mechanics # noqa