REVIEWED: New examples on VS project

This commit is contained in:
Ray
2025-10-15 19:59:28 +02:00
parent 4ba92f8962
commit 8e052b81b4
20 changed files with 3098 additions and 76 deletions

View File

@@ -1,6 +1,6 @@
/*******************************************************************************************
*
* raylib [shapes] example - shapes recursive tree
* raylib [shapes] example - recursive tree
*
* Example complexity rating: [★★★☆] 3/4
*
@@ -11,7 +11,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
* Copyright (c) 2018-2025 Jopestpe (@jopestpe)
* Copyright (c) 2025 Jopestpe (@jopestpe)
*
********************************************************************************************/
@@ -46,7 +46,7 @@ int main(void)
const int screenWidth = 800;
const int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [shapes] example - shapes recursive tree");
InitWindow(screenWidth, screenHeight, "raylib [shapes] example - recursive tree");
Vector2 start = { (screenWidth/2.0f) - 125.0f, (float)screenHeight };
float angle = 40.0f;