fix index order

This commit is contained in:
Robin Appelman 2023-12-16 22:35:52 +01:00
commit 150709864c

View file

@ -144,10 +144,10 @@ impl Strip {
Either::Left((0..self.indices.len()).flat_map(move |i| { Either::Left((0..self.indices.len()).flat_map(move |i| {
let cw = i & 1; let cw = i & 1;
let idx = offset + i; let idx = offset + i;
[idx, idx + 1 - cw, idx + 2 - cw].into_iter() [idx, idx + 1 - cw, idx + 2 - cw].into_iter().rev()
})) }))
} else { } else {
Either::Right(self.indices.clone()) Either::Right(self.indices.clone().rev())
} }
} }
} }