Partial valid-jsdoc corrections
This commit is contained in:
@@ -24,12 +24,12 @@ ol.geom.flat.flip.flipXY =
|
||||
dest = [];
|
||||
destOffset = 0;
|
||||
}
|
||||
var j, k;
|
||||
for (j = offset; j < end; ) {
|
||||
var j = offset;
|
||||
while (j < end) {
|
||||
var x = flatCoordinates[j++];
|
||||
dest[destOffset++] = flatCoordinates[j++];
|
||||
dest[destOffset++] = x;
|
||||
for (k = 2; k < stride; ++k) {
|
||||
for (var k = 2; k < stride; ++k) {
|
||||
dest[destOffset++] = flatCoordinates[j++];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user