Closed
Description
In version 4.14.3, alphahull
algorithm for Mesh3d
seems broken - the examples at https://plotly.com/python/3d-mesh/ also don't render.
Minimal example (from the docs):
import plotly.graph_objects as go
import numpy as np
pts = np.loadtxt(np.DataSource().open('https://raw.githubusercontent.com/plotly/datasets/master/mesh_dataset.txt'))
x, y, z = pts.T
fig = go.Figure(data=[go.Mesh3d(x=x, y=y, z=z,
alphahull=5,
opacity=0.4,
color='cyan')])
fig.show()
Metadata
Metadata
Assignees
Labels
No labels