Skip to content

Commit 7c90450

Browse files
Merge pull request #338 from plotly/issue254
Issue254
2 parents 8813265 + 768948c commit 7c90450

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

plotly/plotlyfig_aux/handlegraphics/updateQuiver.m

+32
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@
5151
col = 255*quiver_data.Color;
5252
obj.data{quiverIndex}.line.color = ['rgb(' num2str(col(1)) ',' num2str(col(2)) ',' num2str(col(3)) ')'];
5353

54+
%------------------------------------------------------------------------%
55+
5456
%-quiver line width-%
5557
obj.data{quiverIndex}.line.width = 2 * quiver_data.LineWidth;
5658

@@ -115,6 +117,32 @@
115117
m = m + 3;
116118
end
117119

120+
%------------------------------------------------------------------------%
121+
122+
%-quiver z-%
123+
124+
% check for 3D plot
125+
flag3d = ~isempty(quiver_data.ZData);
126+
127+
if flag3d
128+
129+
%-format data-%
130+
zdata = quiver_data.ZData(:);
131+
wdata = quiver_data.WData(:)*scalefactor;
132+
133+
%-set 3d data-%
134+
m = 1;
135+
for n = 1:length(ydata)
136+
obj.data{quiverIndex}.z(m) = zdata(n);
137+
obj.data{quiverIndex}.z(m+1) = zdata(n) + wdata(n);
138+
obj.data{quiverIndex}.z(m+2) = nan;
139+
m = m + 3;
140+
end
141+
142+
%-scatter 3d type-%
143+
obj.data{quiverIndex}.type = 'scatter3d';
144+
end
145+
118146
%-------------------------------------------------------------------------%
119147

120148
%-quiver barbs-%
@@ -154,6 +182,10 @@
154182
for col = 1:4
155183
obj.data{quiverIndex}.x(end+1) = barb(1,col); % point 1
156184
obj.data{quiverIndex}.y(end+1) = barb(2,col);
185+
186+
if flag3d
187+
obj.data{quiverIndex}.z(end+1) = zdata(n);
188+
end
157189
end
158190
end
159191
end

0 commit comments

Comments
 (0)