2014-04-02 00:11:14 +05:30
|
|
|
# -*- coding: UTF-8 no BOM -*-
|
|
|
|
|
2016-03-04 23:20:13 +05:30
|
|
|
"""Main aggregator"""
|
2017-11-21 16:11:02 +05:30
|
|
|
import os
|
2017-02-17 23:06:01 +05:30
|
|
|
|
2016-01-27 22:18:27 +05:30
|
|
|
with open(os.path.join(os.path.dirname(__file__),'../../VERSION')) as f:
|
|
|
|
version = f.readline()[:-1]
|
|
|
|
|
2018-07-11 08:42:49 +05:30
|
|
|
name = 'damask'
|
|
|
|
|
2016-03-04 23:20:13 +05:30
|
|
|
from .environment import Environment # noqa
|
|
|
|
from .asciitable import ASCIItable # noqa
|
2017-02-17 23:06:01 +05:30
|
|
|
|
2016-03-04 23:20:13 +05:30
|
|
|
from .config import Material # noqa
|
|
|
|
from .colormaps import Colormap, Color # noqa
|
2016-07-14 19:40:59 +05:30
|
|
|
from .orientation import Quaternion, Rodrigues, Symmetry, Orientation # noqa
|
|
|
|
|
2013-01-09 00:17:44 +05:30
|
|
|
#from .block import Block # only one class
|
2016-03-04 23:20:13 +05:30
|
|
|
from .result import Result # noqa
|
|
|
|
from .geometry import Geometry # noqa
|
|
|
|
from .solver import Solver # noqa
|
|
|
|
from .test import Test # noqa
|
|
|
|
from .util import extendableOption # noqa
|