Skip to content

Commit

Permalink
Update models_billboard.c
Browse files Browse the repository at this point in the history
  • Loading branch information
raysan5 committed Jul 7, 2024
1 parent 43fe992 commit 9764fef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/models/models_billboard.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ int main(void)
Vector3 billUp = { 0.0f, 1.0f, 0.0f };

// Set the height of the rotating billboard to 1.0 with the aspect ratio fixed
Vector2 size = { source.width / source.height, 1.0f };
Vector2 size = { source.width/source.height, 1.0f };

// Rotate around origin
// Here we choose to rotate around the image center
Expand Down

0 comments on commit 9764fef

Please sign in to comment.