Skip to content

Commit eb89b10

Browse files
committed
fix: add other plotters to visualisation
1 parent e33c9dc commit eb89b10

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed
Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,11 @@
1-
from loopstructuralvisualisation import Loop3DView
1+
try:
2+
from loopstructuralvisualisation import (
3+
Loop3DView,
4+
RotationAnglePlotter,
5+
Loop2DView,
6+
StratigraphicColumnView,
7+
)
8+
except ImportError as e:
9+
print("Please install the loopstructuralvisualisation package")
10+
print("pip install loopstructuralvisualisation")
11+
raise e

0 commit comments

Comments
 (0)