Minor fixes to include paths and CMakeLists

Removed draw call from model constructor with filename
This commit is contained in:
trotFunky 2019-10-06 20:12:53 +02:00
parent 4050410039
commit 0fea63c566
3 changed files with 15 additions and 3 deletions

View file

@ -11,7 +11,6 @@ Model3D::Model3D() : vertex_count(0), face_count(0), texture_count(0), is_textur
Model3D::Model3D(const std::string& file_name) : Model3D()
{
load_ascii_off_file(file_name);
draw_model();
}
Model3D::~Model3D()