Mercurial > hg > octave-lyh
comparison scripts/plot/private/__quiver__.m @ 11149:fe3c3dfc07eb
style fix: break lines before && and ||, not after
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Sat, 23 Oct 2010 03:00:31 -0400 |
parents | 95c3e38098bf |
children | 4cab008d3be1 |
comparison
equal
deleted
inserted
replaced
11148:c9ec943ebe65 | 11149:fe3c3dfc07eb |
---|---|
209 if (is3d) | 209 if (is3d) |
210 zarrw1 = zarrw2 = zend - ww(:) * arrowsize; | 210 zarrw1 = zarrw2 = zend - ww(:) * arrowsize; |
211 endif | 211 endif |
212 | 212 |
213 if (have_line_spec) | 213 if (have_line_spec) |
214 if (isfield (linespec, "marker") && | 214 if (isfield (linespec, "marker") |
215 ! strncmp (linespec.marker, "none", 4)) | 215 && ! strncmp (linespec.marker, "none", 4)) |
216 if (is3d) | 216 if (is3d) |
217 h2 = plot3 ([xarrw1.'; xend.'; xarrw2.'; NaN(1, length (x))](:), | 217 h2 = plot3 ([xarrw1.'; xend.'; xarrw2.'; NaN(1, length (x))](:), |
218 [yarrw1.'; yend.'; yarrw2.'; NaN(1, length (y))](:), | 218 [yarrw1.'; yend.'; yarrw2.'; NaN(1, length (y))](:), |
219 [zarrw1.'; zend.'; zarrw2.'; NaN(1, length (z))](:), | 219 [zarrw1.'; zend.'; zarrw2.'; NaN(1, length (z))](:), |
220 "linestyle", "none", "parent", hg); | 220 "linestyle", "none", "parent", hg); |