Skip to content

File Vertex.h

File List > include > mesh > Vertex.h

Go to the documentation of this file

#pragma once

#include "Vector3D.h"

namespace Argos {

class Vertex {
private:
  Vector3D<double> position;

public:
  Vertex(const Vector3D<double>& src);

  const Vector3D<double>& getPosition() const;

  Vector3D<double>& getPosition();
};

} // namespace Argos