Mercurial > hg > octave-nkf
comparison src/DLD-FUNCTIONS/__contourc__.cc @ 8333:9238637cb81c
style fixes
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Tue, 18 Nov 2008 11:14:31 -0500 |
parents | 7593f8e83a2e |
children | eb63fbe60fab |
comparison
equal
deleted
inserted
replaced
8332:34fde4755a0f | 8333:9238637cb81c |
---|---|
156 } | 156 } |
157 | 157 |
158 start_contour (lvl, ct_x, ct_y); | 158 start_contour (lvl, ct_x, ct_y); |
159 } | 159 } |
160 | 160 |
161 // Find stop edge FIXME: control flow --> while. | 161 // Find stop edge. |
162 // FIXME -- perhaps this should use a while loop? | |
162 for (unsigned int k = 1; k <= 4; k++) | 163 for (unsigned int k = 1; k <= 4; k++) |
163 { | 164 { |
164 if (start_edge == 0 || start_edge == 2) | 165 if (start_edge == 0 || start_edge == 2) |
165 stop_edge = (start_edge + k) % 4; | 166 stop_edge = (start_edge + k) % 4; |
166 else | 167 else |