Skip to content

File Face.h

File List > include > mesh > Face.h

Go to the documentation of this file

#pragma once

#include <vector>

namespace Argos {

class Face {
private:
  std::vector<int> indices;

public:
  Face(const std::vector<int>& indices);

  const std::vector<int>& getIndices() const;

  std::vector<int>& getIndices();
};

} // namespace Argos