File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/components/textures/shaders Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ uniform float animateProg;
1515
1616vec3 givePosition(vec2 uv) {
1717 // Reverse the normalization using the bounds
18- float longitude = - ((1.0 - uv.x) * (lonBounds.y - lonBounds.x) + lonBounds.x);
18+ float longitude = ((1.0 - uv.x) * (lonBounds.y - lonBounds.x) + lonBounds.x);
1919 float latitude = uv.y * (latBounds.y - latBounds.x) + latBounds.x;
2020
2121 // Convert to Cartesian coordinates
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ uniform float animateProg;
1515
1616vec3 givePosition(vec2 uv) {
1717 // Reverse the normalization using the bounds
18- float longitude = - ((1.0 - uv.x) * (lonBounds.y - lonBounds.x) + lonBounds.x);
18+ float longitude = ((1.0 - uv.x) * (lonBounds.y - lonBounds.x) + lonBounds.x);
1919 float latitude = uv.y * (latBounds.y - latBounds.x) + latBounds.x;
2020
2121 // Convert to Cartesian coordinates
You can’t perform that action at this time.
0 commit comments