We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b57b95c commit cd28769Copy full SHA for cd28769
OpenRocket/OpenRocket/Game.cpp
@@ -433,8 +433,8 @@ void Game::CreateAsteroidBuffers() {
433
Vertices[9 * k + 5] = 0.0f;
434
Vertices[9 * k + 6] = 0.0f;
435
436
- Vertices[9 * k + 7] = (sin(theta) + 1) / 2;
437
- Vertices[9 * k + 8] = (cos(theta) + 1)/ 2;
+ Vertices[9 * k + 7] = (cos(theta) + 1) / 2;
+ Vertices[9 * k + 8] = (sin(theta) + 1)/ 2;
438
}
439
440
glGenVertexArrays(1, &asteroidVao);
0 commit comments