|
|
@ -1,6 +1,8 @@ |
|
|
|
/******************************************************************************************* |
|
|
|
* |
|
|
|
* raylib example - procedural mesh generation |
|
|
|
* raylib [models] example - procedural mesh generation |
|
|
|
* |
|
|
|
* Example complexity rating: [★★☆☆] 2/4 |
|
|
|
* |
|
|
|
* Example originally created with raylib 1.8, last time updated with raylib 4.0 |
|
|
|
* |
|
|
@ -28,8 +30,6 @@ int main(void) |
|
|
|
const int screenHeight = 450; |
|
|
|
|
|
|
|
InitWindow(screenWidth, screenHeight, "raylib [models] example - mesh generation"); |
|
|
|
* |
|
|
|
* Example complexity rating: [★★☆☆] 2/4 |
|
|
|
|
|
|
|
// We generate a checked image for texturing |
|
|
|
Image checked = GenImageChecked(2, 2, 1, 1, RED, GREEN); |
|
|
|