Program Listing for File LocalApproximation.hpp

Return to documentation for file (include/lvr2/reconstruction/LocalApproximation.hpp)

 /*
 * LocalApproximation.hpp
 *
 *  Created on: 15.02.2011
 *      Author: Thomas Wiemann
 */

#ifndef _LVR2_RECONSTRUCTION_LOCALAPPROXIMATIONS_H_
#define _LVR2_RECONSTRUCTION_LOCALAPPROXIMATIONS_H_

#include "lvr2/geometry/BaseMesh.hpp"

#include "AdaptiveKSearchSurface.hpp"

namespace lvr2
{

template<typename BaseVecT>
class LocalApproximation
{
public:

    virtual void getSurface(
        BaseMesh<BaseVecT> &mesh,
        AdaptiveKSearchSurface<BaseVecT> &manager,
        uint &globalIndex
    );
};


} // namspace lvr2

#endif /* _LVR2_RECONSTRUCTION_LOCALAPPROXIMATIONS_H_ */