Interactively rotating a fault plane in Python

preview_player
Показать описание
# 3d plotting of Fault Plane
import pandas as pd
import numpy as np
print(dfSurface)
def SurfacePlottingFunction(E,A):




from ipywidgets import interactive
iplot = interactive(SurfacePlottingFunction,
E = (-90,90,5),
A = (-90,90,5)
)
iplot
Рекомендации по теме