Remove trail spaces

This commit is contained in:
Ray
2021-04-22 18:55:24 +02:00
parent f92ee46d86
commit dcf52c132f
61 changed files with 565 additions and 565 deletions

View File

@@ -53,7 +53,7 @@ int main()
camera.position.x = (float)cos(cameraTime)*40.0f;
camera.position.z = (float)sin(cameraTime)*40.0f;
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
@@ -64,11 +64,11 @@ int main()
DrawGrid(10, 5.0f);
for (int x = 0; x < numBlocks; x++)
for (int x = 0; x < numBlocks; x++)
{
for (int y = 0; y < numBlocks; y++)
for (int y = 0; y < numBlocks; y++)
{
for (int z = 0; z < numBlocks; z++)
for (int z = 0; z < numBlocks; z++)
{
// Scale of the blocks depends on x/y/z positions
float blockScale = (x + y + z)/30.0f;
@@ -94,9 +94,9 @@ int main()
}
}
}
EndMode3D();
DrawFPS(10, 10);
EndDrawing();