Skip to content

Mesh3d alphahull is broken #3615

Closed
Closed
@cstenkamp

Description

@cstenkamp

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()

See also https://stackoverflow.com/q/70825818/5122790

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions