File Vertex.cpp
File List > core > mesh > Vertex.cpp
Go to the documentation of this file
#include "mesh/Vertex.h"
#include "structure/Vector3D.h"
namespace Argos {
Vertex::Vertex(Vector3D<double> src): position(src) {}
Vector3D<double> Vertex::getPosition() const {
return position;
}
}