How can I get the vertices of a model loaded with 3DModelLoader? Do I need to hack into model3DS and if so any suggestions? I see
std::vector<float> m_vertices;
std::vector<float> m_normals;
std::vector<ushort> m_faces;
marked as private. Maybe write a public funciton in model3DS to return them? Or just make them public?