Skip to content

Commit 4a2aaef

Browse files
fix issues and awesome improvements in mesh functionality
1 parent 9cc18d7 commit 4a2aaef

File tree

4 files changed

+617
-83
lines changed

4 files changed

+617
-83
lines changed

plotly/plotlyfig_aux/core/updateData.m

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@
3030
elseif strcmpi(obj.PlotOptions.TreatAs, 'surf')
3131
updateSurf(obj, dataIndex);
3232
elseif strcmpi(obj.PlotOptions.TreatAs, 'fmesh')
33-
updateFmesh(obj, dataIndex);
33+
updateFmesh(obj, dataIndex);
34+
elseif strcmpi(obj.PlotOptions.TreatAs, 'mesh')
35+
updateMesh(obj, dataIndex);
3436

3537
% this one will be revomed
3638
elseif strcmpi(obj.PlotOptions.TreatAs, 'streamtube')

0 commit comments

Comments
 (0)