-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcore_maps.py
More file actions
22 lines (21 loc) · 871 Bytes
/
core_maps.py
File metadata and controls
22 lines (21 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from tyssue.geometry.base_geometry import *
from tyssue.geometry.planar_geometry import *
from tyssue.geometry.sheet_geometry import *
from tyssue.geometry.vessel_geometry import *
from tyssue.geometry.multisheetgeometry import *
from tyssue.geometry.bulk_geometry import *
from tyssue.geometry.cylinder_geometry import *
GEOMETRY_MAP = {
"PlanarGeometry": PlanarGeometry,
"AnnularGeometry": AnnularGeometry,
"WeightedPerimeterPlanarGeometry": WeightedPerimeterPlanarGeometry,
"SheetGeometry": SheetGeometry,
"VesselGeometry": VesselGeometry,
"CylinderGeometry": CylinderGeometry,
"ClosedSheetGeometry": ClosedSheetGeometry,
"CylinderGeometryInit": CylinderGeometryInit,
"BulkGeometry": BulkGeometry,
"RNRGeometry": RNRGeometry,
"MonolayerGeometry": MonolayerGeometry,
"ClosedMonolayerGeometry": ClosedMonolayerGeometry,
}