From 3a1ae681e92340b1730141095d543fc13d8b4ce2 Mon Sep 17 00:00:00 2001 From: Adrian Dawid Date: Thu, 13 Aug 2020 21:13:36 +0200 Subject: [PATCH] Update shorthands example --- src/shorthands.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/shorthands.jl b/src/shorthands.jl index cbaf2971..16cff854 100644 --- a/src/shorthands.jl +++ b/src/shorthands.jl @@ -328,13 +328,13 @@ Plot a 3d mesh. On Plotly the triangles can be specified using the i,j,k argumen ```Julia x=[0, 1, 2, 0] y=[0, 0, 1, 2] -z=[2, 4, 2, 3] +z=[0, 2, 0, 1] i=[0, 0, 0, 1] j=[1, 2, 3, 2] k=[2, 3, 1, 3] -mesh3d(x,y,z;i,j,k) +plot(x,y,z,seriestype=:mesh3d;connections=(i,j,k)) ``` """ @shorthands mesh3d