# HG changeset patch # User Rik # Date 1292379476 28800 # Node ID 4cab008d3be12ae8386063023d5435b49a9190e3 # Parent a0dfd7e8e3e2505cafc2b26fff173059ed9ed757 Use high contrast color black for arrows in quiver3 plots. Bug #31802. diff -r a0dfd7e8e3e2 -r 4cab008d3be1 scripts/ChangeLog --- a/scripts/ChangeLog Tue Dec 14 17:27:19 2010 -0800 +++ b/scripts/ChangeLog Tue Dec 14 18:17:56 2010 -0800 @@ -1,3 +1,8 @@ +2010-12-14 John W. Eaton + + * plot/private/__quiver__.m: Use high contrast color black for arrows + in quiver3 plots. Bug #31802. + 2010-12-14 Rik * plot/compass.m, plot/errorbar.m, plot/legend.m, plot/rose.m, diff -r a0dfd7e8e3e2 -r 4cab008d3be1 scripts/plot/private/__quiver__.m --- a/scripts/plot/private/__quiver__.m Tue Dec 14 17:27:19 2010 -0800 +++ b/scripts/plot/private/__quiver__.m Tue Dec 14 18:17:56 2010 -0800 @@ -192,7 +192,7 @@ h1 = plot3 ([x.'; xend.'; NaN(1, length (x))](:), [y.'; yend.'; NaN(1, length (y))](:), [z.'; zend.'; NaN(1, length (z))](:), - "parent", hg); + "color", "black", "parent", hg); else h1 = plot ([x.'; xend.'; NaN(1, length (x))](:), [y.'; yend.'; NaN(1, length (y))](:), @@ -241,7 +241,7 @@ h2 = plot3 ([xarrw1.'; xend.'; xarrw2.'; NaN(1, length (x))](:), [yarrw1.'; yend.'; yarrw2.'; NaN(1, length (y))](:), [zarrw1.'; zend.'; zarrw2.'; NaN(1, length (z))](:), - "parent", hg); + "color", "black", "parent", hg); else h2 = plot ([xarrw1.'; xend.'; xarrw2.'; NaN(1, length (x))](:), [yarrw1.'; yend.'; yarrw2.'; NaN(1, length (y))](:),