//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. // // This software is distributed WITHOUT ANY WARRANTY; without even // the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR // PURPOSE. See the above copyright notice for more information. //============================================================================ #ifndef vtk_m_filter_ParticleAdvection_h #define vtk_m_filter_ParticleAdvection_h #include #include namespace vtkm { namespace filter { /// \brief Advect particles in a vector field. /// Takes as input a vector field and seed locations and generates the /// end points for each seed through the vector field. class ParticleAdvection : public vtkm::filter::FilterParticleAdvection { public: VTKM_CONT ParticleAdvection(); template vtkm::cont::PartitionedDataSet PrepareForExecution( const vtkm::cont::PartitionedDataSet& input, const vtkm::filter::PolicyBase& policy); }; } } // namespace vtkm::filter #ifndef vtk_m_filter_ParticleAdvection_hxx #include #endif #endif // vtk_m_filter_ParticleAdvection_h