2013-11-24 23:30:05 +04:00
|
|
|
/*******************************************************************************************
|
|
|
|
*
|
2014-09-21 16:26:42 +04:00
|
|
|
* raylib [models] example - Draw some basic geometric shapes (cube, sphere, cylinder...)
|
2013-11-24 23:30:05 +04:00
|
|
|
*
|
2013-11-29 00:16:31 +04:00
|
|
|
* This example has been created using raylib 1.0 (www.raylib.com)
|
|
|
|
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
|
2013-11-24 23:30:05 +04:00
|
|
|
*
|
2015-08-28 15:17:35 +03:00
|
|
|
* Copyright (c) 2014 Ramon Santamaria (@raysan5)
|
2013-11-24 23:30:05 +04:00
|
|
|
*
|
|
|
|
********************************************************************************************/
|
|
|
|
|
|
|
|
#include "raylib.h"
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2013-11-29 00:16:31 +04:00
|
|
|
// Initialization
|
|
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
int screenWidth = 800;
|
|
|
|
int screenHeight = 450;
|
2013-11-24 23:30:05 +04:00
|
|
|
|
2014-09-21 16:26:42 +04:00
|
|
|
InitWindow(screenWidth, screenHeight, "raylib [models] example - geometric shapes");
|
|
|
|
|
2013-11-24 23:30:05 +04:00
|
|
|
// Define the camera to look into our 3d world
|
2016-03-05 15:05:45 +03:00
|
|
|
Camera camera = {{ 0.0f, 10.0f, 10.0f }, { 0.0f, 0.0f, 0.0f }, { 0.0f, 1.0f, 0.0f }, 45.0f };
|
2014-09-30 01:41:05 +04:00
|
|
|
|
2013-11-28 22:59:56 +04:00
|
|
|
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
|
|
|
|
//--------------------------------------------------------------------------------------
|
2014-09-30 01:41:05 +04:00
|
|
|
|
2013-11-24 23:30:05 +04:00
|
|
|
// Main game loop
|
2013-11-29 00:16:31 +04:00
|
|
|
while (!WindowShouldClose()) // Detect window close button or ESC key
|
2013-11-24 23:30:05 +04:00
|
|
|
{
|
2013-11-29 00:16:31 +04:00
|
|
|
// Update
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
// TODO: Update your variables here
|
|
|
|
//----------------------------------------------------------------------------------
|
2014-09-30 01:41:05 +04:00
|
|
|
|
2013-11-29 00:16:31 +04:00
|
|
|
// Draw
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
BeginDrawing();
|
2014-09-30 01:41:05 +04:00
|
|
|
|
2013-11-29 00:16:31 +04:00
|
|
|
ClearBackground(RAYWHITE);
|
2014-09-30 01:41:05 +04:00
|
|
|
|
2013-11-29 00:16:31 +04:00
|
|
|
Begin3dMode(camera);
|
2014-09-30 01:41:05 +04:00
|
|
|
|
2016-01-16 14:52:55 +03:00
|
|
|
DrawCube((Vector3){-4.0f, 0.0f, 2.0f}, 2.0f, 5.0f, 2.0f, RED);
|
|
|
|
DrawCubeWires((Vector3){-4.0f, 0.0f, 2.0f}, 2.0f, 5.0f, 2.0f, GOLD);
|
|
|
|
DrawCubeWires((Vector3){-4.0f, 0.0f, -2.0f}, 3.0f, 6.0f, 2.0f, MAROON);
|
2014-09-30 01:41:05 +04:00
|
|
|
|
2016-01-16 14:52:55 +03:00
|
|
|
DrawSphere((Vector3){-1.0f, 0.0f, -2.0f}, 1.0f, GREEN);
|
|
|
|
DrawSphereWires((Vector3){1.0f, 0.0f, 2.0f}, 2.0f, 16, 16, LIME);
|
2014-09-30 01:41:05 +04:00
|
|
|
|
2016-01-16 14:52:55 +03:00
|
|
|
DrawCylinder((Vector3){4.0f, 0.0f, -2.0f}, 1.0f, 2.0f, 3.0f, 4, SKYBLUE);
|
|
|
|
DrawCylinderWires((Vector3){4.0f, 0.0f, -2.0f}, 1.0f, 2.0f, 3.0f, 4, DARKBLUE);
|
|
|
|
DrawCylinderWires((Vector3){4.5f, -1.0f, 2.0f}, 1.0f, 1.0f, 2.0f, 6, BROWN);
|
2014-09-30 01:41:05 +04:00
|
|
|
|
2016-01-16 14:52:55 +03:00
|
|
|
DrawCylinder((Vector3){1.0f, 0.0f, -4.0f}, 0.0f, 1.5f, 3.0f, 8, GOLD);
|
|
|
|
DrawCylinderWires((Vector3){1.0f, 0.0f, -4.0f}, 0.0f, 1.5f, 3.0f, 8, PINK);
|
2013-12-20 16:21:22 +04:00
|
|
|
|
2016-01-16 14:52:55 +03:00
|
|
|
DrawGrid(10, 1.0f); // Draw a grid
|
2014-09-30 01:41:05 +04:00
|
|
|
|
2013-11-29 00:16:31 +04:00
|
|
|
End3dMode();
|
2014-09-30 01:41:05 +04:00
|
|
|
|
2013-11-29 00:16:31 +04:00
|
|
|
DrawFPS(10, 10);
|
2014-09-30 01:41:05 +04:00
|
|
|
|
2013-11-28 22:59:56 +04:00
|
|
|
EndDrawing();
|
2013-11-29 00:16:31 +04:00
|
|
|
//----------------------------------------------------------------------------------
|
2013-11-28 22:59:56 +04:00
|
|
|
}
|
|
|
|
|
2013-11-29 00:16:31 +04:00
|
|
|
// De-Initialization
|
|
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
CloseWindow(); // Close window and OpenGL context
|
|
|
|
//--------------------------------------------------------------------------------------
|
2014-09-30 01:41:05 +04:00
|
|
|
|
2013-11-24 23:30:05 +04:00
|
|
|
return 0;
|
2014-09-21 16:26:42 +04:00
|
|
|
}
|