Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4647830

Browse files
committed
Merge branch 'Trisurf_Plots' of https://github.com/plotly/plotly.py into Trisurf_Plots
2 parents be9112c + 4237742 commit 4647830

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plotly/tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1561,7 +1561,7 @@ def _trisurf(x, y, z, simplices, colormap=None,
15611561
from plotly.graph_objs import graph_objs
15621562
points3D = np.vstack((x, y, z)).T
15631563

1564-
# list of the surface triangles vertices
1564+
# vertices of the surface triangles
15651565
tri_vertices = list(map(lambda index: points3D[index], simplices))
15661566
# mean values of z-coordinates of triangle vertices
15671567
zmean = [np.mean(tri[:, 2]) for tri in tri_vertices]

0 commit comments

Comments
 (0)