File tree 1 file changed +32
-0
lines changed
plotly/plotlyfig_aux/handlegraphics
1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change 51
51
col = 255 * quiver_data .Color ;
52
52
obj.data{quiverIndex }.line.color = [' rgb(' num2str(col(1 )) ' ,' num2str(col(2 )) ' ,' num2str(col(3 )) ' )' ];
53
53
54
+ % ------------------------------------------------------------------------%
55
+
54
56
% -quiver line width-%
55
57
obj.data{quiverIndex }.line.width = 2 * quiver_data .LineWidth ;
56
58
115
117
m = m + 3 ;
116
118
end
117
119
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
+
118
146
% -------------------------------------------------------------------------%
119
147
120
148
% -quiver barbs-%
154
182
for col = 1 : 4
155
183
obj.data{quiverIndex }.x(end + 1 ) = barb(1 ,col ); % point 1
156
184
obj.data{quiverIndex }.y(end + 1 ) = barb(2 ,col );
185
+
186
+ if flag3d
187
+ obj.data{quiverIndex }.z(end + 1 ) = zdata(n );
188
+ end
157
189
end
158
190
end
159
191
end
You can’t perform that action at this time.
0 commit comments