Skip to content

Commit

Permalink
Fix down looping in CubeSpherePoint.
Browse files Browse the repository at this point in the history
  • Loading branch information
WhyAreAllTheseTaken committed Jan 25, 2024
1 parent bb3781b commit 8db5e7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sphere.rs
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ impl <const S: usize> GridPoint for CubeSpherePoint<S> {
Self {
face: CubeFace::Top,
x: self.x,
y: S as u16 + 1,
y: 0,
}
} else {
Self {
Expand Down

0 comments on commit 8db5e7a

Please sign in to comment.