#ifndef BOOST_COMPUTE_INTEROP_VTK_POINTS_HPP
#define BOOST_COMPUTE_INTEROP_VTK_POINTS_HPP
#include <vector>
#include <vtkPoints.h>
#include <boost/compute/system.hpp>
#include <boost/compute/command_queue.hpp>
#include <boost/compute/algorithm/copy.hpp>
#include <boost/compute/iterator/buffer_iterator.hpp>
namespace boost {
namespace compute {
template<class PointType>
inline void vtk_copy_points_to_buffer(const vtkPoints *points,
buffer_iterator<PointType> buffer,
command_queue &queue = system::default_queue())
{
vtkPoints *points_ = const_cast<vtkPoints *>(points);
std::vector<PointType> tmp(points_->GetNumberOfPoints());
for(vtkIdType i = 0; i < points_->GetNumberOfPoints(); i++){
double *p = points_->GetPoint(i);
tmp[i] = PointType(p[0], p[1], p[2], 1);
}
copy(tmp.begin(), tmp.end(), buffer, queue);
}
} }
#endif