clean first level structure

This commit is contained in:
Martin Diehl 2020-03-19 15:19:11 +01:00
parent 899cc913c4
commit e390982be7
13 changed files with 12 additions and 14 deletions

View File

@ -8,18 +8,18 @@ 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 ._vtk import VTK # noqa from ._vtk import VTK # 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 ._geom import Geom # noqa from ._geom import Geom # noqa
from .solver import Solver # noqa from ._solver import Solver # noqa
# deprecated # deprecated
from .asciitable import ASCIItable # noqa from ._asciitable import ASCIItable # noqa
from ._config import Material # noqa
from ._test import Test # noqa
from .util import extendableOption # noqa from .util import extendableOption # noqa
from .config import Material # noqa
from .test import Test # noqa

View File

@ -1,10 +1,8 @@
import numpy as np import numpy as np
from .rotation import Rotation from . import Rotation
P = -1
# ******************************************************************************************
class Symmetry: class Symmetry:
""" """
Symmetry operations for lattice systems. Symmetry operations for lattice systems.

View File

@ -1,7 +1,7 @@
import numpy as np import numpy as np
from .lattice import Lattice from . import Lattice
from .rotation import Rotation from . import Rotation
class Orientation: class Orientation:
""" """