Removed completed tasks

This commit is contained in:
Grayson Riffe (Laptop) 2021-08-27 01:22:36 -05:00
parent dd4071c29e
commit bd8df1c2cf
2 changed files with 0 additions and 2 deletions

View File

@ -47,7 +47,6 @@ namespace nf {
model = glm::rotate(model, glm::radians(m_rotation.y), glm::vec3(0.0, 1.0, 0.0));
model = glm::rotate(model, glm::radians(m_rotation.z), glm::vec3(0.0, 0.0, 1.0));
model = glm::scale(model, glm::vec3(m_scale.x, m_scale.y, m_scale.z));
//TODO: fill out model matrix
shader->setUniform("model", model);
}

View File

@ -23,7 +23,6 @@ namespace nf {
Entity();
void create(const void* vertexBufferData, const size_t vertexBufferSize, const void* indexBufferData, size_t indexBufferCount);
//TODO: Do this using loaded assets somehow
void setLocation(float x, float y, float z);
void setRotation(float x, float y, float z);
void setScale(float x);