//============================================================================ // 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_ComputeMoments_h #define vtk_m_filter_ComputeMoments_h #include namespace vtkm { namespace filter { class ComputeMoments : public vtkm::filter::FilterCell { public: VTKM_CONT ComputeMoments(); template VTKM_CONT vtkm::cont::DataSet DoExecute(const vtkm::cont::DataSet& input, const vtkm::cont::ArrayHandle& field, const vtkm::filter::FieldMetadata& fieldMetadata, const vtkm::filter::PolicyBase&); VTKM_CONT void SetRadius(double _radius) { this->Radius = _radius; } VTKM_CONT void SetSpacing(vtkm::Vec3f _spacing) { this->Spacing = _spacing; } VTKM_CONT void SetOrder(vtkm::Int32 _order) { this->Order = _order; } private: double Radius = 1; vtkm::Vec3f Spacing = { 1.0f, 1.0f, 1.0f }; vtkm::Int32 Order = 0; }; } } // namespace vtkm::filter #include #endif //vtk_m_filter_ComputeMoments_h