Skip to content

Commit ead2ed2

Browse files
Merge pull request #378 from plotly/fix_issues_and_awesome_improvements_in_mesh_functionality
fix issues and awesome improvements in mesh functionality
2 parents 7cb06de + 4a2aaef commit ead2ed2

File tree

4 files changed

+617
-83
lines changed

4 files changed

+617
-83
lines changed

plotly/plotlyfig_aux/core/updateData.m

+3-1
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)