Spaces:
Sleeping
Sleeping
File size: 434 Bytes
66c9c8a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | from .element import Element
from .geometry import Geometry
from .deformed_geometry import DeformedGeometry
from .partition import (
GeometryPartition,
WholeGeometryPartition,
LinearGeometryPartition,
ExplicitGeometryPartition,
)
from .grid_2d import Grid2D
from .grid_3d import Grid3D
from .trimesh_2d import Trimesh2D
from .tetmesh import Tetmesh
from .quadmesh_2d import Quadmesh2D
from .hexmesh import Hexmesh
|