//============================================================================ // 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_VectorMagnitude_hxx #define vtk_m_filter_VectorMagnitude_hxx #include namespace vtkm { namespace filter { //----------------------------------------------------------------------------- template inline VTKM_CONT vtkm::cont::DataSet VectorMagnitude::DoExecute( const vtkm::cont::DataSet& inDataSet, const vtkm::cont::ArrayHandle& field, const vtkm::filter::FieldMetadata& fieldMetadata, vtkm::filter::PolicyBase) { using ReturnType = typename ::vtkm::detail::FloatingPointReturnType::Type; vtkm::cont::ArrayHandle outArray; this->Invoke(this->Worklet, field, outArray); return CreateResult(inDataSet, outArray, this->GetOutputFieldName(), fieldMetadata); } } } // namespace vtkm::filter #endif