File ISurfaceSampler.h
File List > algos > mesh_to_pointcloud > ISurfaceSampler.h
Go to the documentation of this file
#pragma once
#include <string>
namespace Argos
{
class Mesh;
class PointCloud;
class ISurfaceSampler
{
public:
virtual ~ISurfaceSampler() = default;
virtual PointCloud sample(const Mesh& mesh) = 0;
virtual std::string name() const = 0;
};
}