couch/core/Ball.cpp

11 lines
219 B
C++
Raw Normal View History

2021-01-13 10:42:57 -06:00
#include "Ball.h"
Ball::Ball() {
vertices.push_back(Vertex(0.0f, 0.0f, 0.0f));
vertices.push_back(Vertex(1.0f, 0.0f, 0.0f));
vertices.push_back(Vertex(0.5f, 1.0f, 0.0f));
indices.push_back(Index(0, 1, 2));
}