File Face.cpp
File List > core > mesh > Face.cpp
Go to the documentation of this file
#include "mesh/Face.h"
namespace Argos {
Face::Face(std::vector<int> indices) : indices(indices) {}
std::vector<int> Face::getIndices() const {
return indices;
}
} // namespace Argos