made cube rotate
This commit is contained in:
parent
f7941908ef
commit
c6189b2dc3
|
@ -6,6 +6,10 @@
|
||||||
#include <glad/glad.h>
|
#include <glad/glad.h>
|
||||||
#include <GLFW/glfw3.h>
|
#include <GLFW/glfw3.h>
|
||||||
|
|
||||||
|
#ifdef NDEBUG
|
||||||
|
#define FULLSCREEN
|
||||||
|
#endif
|
||||||
|
|
||||||
Application::~Application()
|
Application::~Application()
|
||||||
{
|
{
|
||||||
if (cube != nullptr)
|
if (cube != nullptr)
|
||||||
|
@ -26,7 +30,11 @@ void Application::Init(int width, int height, const std::string& title)
|
||||||
if (window == nullptr)
|
if (window == nullptr)
|
||||||
glfwInit();
|
glfwInit();
|
||||||
|
|
||||||
GLFWmonitor* monitor = glfwGetPrimaryMonitor();
|
int windowWidth = width, windowHeight = height;
|
||||||
|
GLFWmonitor* monitor = NULL;
|
||||||
|
|
||||||
|
#ifdef FULLSCREEN
|
||||||
|
monitor = glfwGetPrimaryMonitor();
|
||||||
const GLFWvidmode* mode = glfwGetVideoMode(monitor);
|
const GLFWvidmode* mode = glfwGetVideoMode(monitor);
|
||||||
|
|
||||||
glfwWindowHint(GLFW_RED_BITS, mode->redBits);
|
glfwWindowHint(GLFW_RED_BITS, mode->redBits);
|
||||||
|
@ -34,8 +42,12 @@ void Application::Init(int width, int height, const std::string& title)
|
||||||
glfwWindowHint(GLFW_BLUE_BITS, mode->blueBits);
|
glfwWindowHint(GLFW_BLUE_BITS, mode->blueBits);
|
||||||
glfwWindowHint(GLFW_REFRESH_RATE, mode->refreshRate);
|
glfwWindowHint(GLFW_REFRESH_RATE, mode->refreshRate);
|
||||||
|
|
||||||
|
windowWidth = mode->width;
|
||||||
|
windowHeight = mode->height;
|
||||||
|
#endif
|
||||||
|
|
||||||
// Create GLFW window
|
// Create GLFW window
|
||||||
window = glfwCreateWindow(mode->width, mode->height, title.c_str(), monitor, NULL);
|
window = glfwCreateWindow(windowWidth, windowHeight, title.c_str(), monitor, NULL);
|
||||||
if (window == nullptr)
|
if (window == nullptr)
|
||||||
{
|
{
|
||||||
const char* errorbuf;
|
const char* errorbuf;
|
||||||
|
@ -61,7 +73,7 @@ void Application::Init(int width, int height, const std::string& title)
|
||||||
throw std::runtime_error("Failed to initialize GLAD");
|
throw std::runtime_error("Failed to initialize GLAD");
|
||||||
}
|
}
|
||||||
|
|
||||||
glViewport(0, 0, mode->width, mode->height);
|
glViewport(0, 0, windowWidth, windowHeight);
|
||||||
glEnable(GL_DEPTH_TEST);
|
glEnable(GL_DEPTH_TEST);
|
||||||
|
|
||||||
// Register GLFW callbacks
|
// Register GLFW callbacks
|
||||||
|
@ -92,6 +104,8 @@ void Application::Launch()
|
||||||
{
|
{
|
||||||
glfwPollEvents();
|
glfwPollEvents();
|
||||||
|
|
||||||
|
cube->Rotate(glm::vec3(0.2f, 1.0f, -0.4f), 1.0f);
|
||||||
|
|
||||||
glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
|
glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
|
||||||
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
|
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#include "Transformable.hpp"
|
#include "Transformable.hpp"
|
||||||
|
|
||||||
Transformable::Transformable() :
|
Transformable::Transformable() :
|
||||||
position(0.0f), scale(1.0f), orientation(0.0, 0.0, 0.0, 0.0)
|
position(0.0f), scale(1.0f), orientation(0.0, 0.0, 0.0, 1.0)
|
||||||
{
|
{
|
||||||
CalculateTransformationMatrix();
|
CalculateTransformationMatrix();
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,7 +7,7 @@ int main(int argc, char** argv)
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
app.Init(800, 800, "Visualizer");
|
app.Init(1280, 720, "Visualizer");
|
||||||
}
|
}
|
||||||
catch (const std::runtime_error& err)
|
catch (const std::runtime_error& err)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue