Skip to content

Commit

Permalink
Corrected error with geom_line() and 3D data
Browse files Browse the repository at this point in the history
  • Loading branch information
piermorel committed May 25, 2016
1 parent 94c6bce commit 8543793
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion @gramm/geom_line.m
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@

hndl=line(combnan(x),combnan(y),'LineStyle',draw_data.line_style,'lineWidth',draw_data.size/4,'Color',draw_data.color);
else
hndl=line(combnan(x),combnan(y),combnan(z),'LineStyle',draw_data.line_style,'lineWidth',draw_data.size/4,'Color',draw_data.color);
hndl=line(combnan(draw_data.x),combnan(draw_data.y),combnan(draw_data.z),'LineStyle',draw_data.line_style,'lineWidth',draw_data.size/4,'Color',draw_data.color);
end
end
obj.results.geom_line_handle{obj.result_ind,1}=hndl;
Expand Down

0 comments on commit 8543793

Please sign in to comment.