20 explicit Vertex(glm::vec3 pos)
51 bool operator==(
const Vertex& other)
const {
52 return this->position == other.position &&
53 this->normal == other.normal &&
54 this->color == other.color &&
58 bool operator!=(
const Vertex& other)
const {
59 return !this->operator==(other);
63 using Index =
unsigned int;