File AdvancingFrontSurface.h
File List > algos > pointcloud_to_mesh > AdvancingFrontSurface.h
Go to the documentation of this file
#pragma once
#include "mesh/Mesh.h"
#include "point_cloud/PointCloud.h"
#include "ISurfaceReconstructor.h"
namespace Argos {
class AdvancingFrontSurface : public ISurfaceReconstructor {
public:
explicit AdvancingFrontSurface() {}
Mesh reconstruct(const PointCloud& pc) const override;
std::string name() const override;
};
}