%%javascript
IPython.OutputArea.prototype._should_scroll = function(lines) {
return false;
}
import numpy as np
import plotly.graph_objects as go
import gstlearn.plot3D as gop
import IPython
import os
import urllib.request
from numpy import pi, cos, sin
import gstlearn as gl
Definition of the Meshing
gl.defineDefaultSpace(gl.ESpaceType.SN)
mesh = gl.MeshSphericalExt()
err = mesh.resetFromDb(None,None,triswitch = "-r4",verbose=False)
Display a white skin around the meshing
blank = gop.SurfaceOnMesh(mesh, opacity=1)
fig = go.Figure(data = [blank])
fig.update_scenes(xaxis_visible=False, yaxis_visible=False, zaxis_visible=False )
f = fig.show()