//============================================================================ // 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_Tube_hxx #define vtk_m_filter_Tube_hxx #include #include #include #include namespace vtkm { namespace filter { //----------------------------------------------------------------------------- inline VTKM_CONT Tube::Tube() : vtkm::filter::FilterDataSet() , Worklet() { } //----------------------------------------------------------------------------- template inline VTKM_CONT vtkm::cont::DataSet Tube::DoExecute(const vtkm::cont::DataSet& input, vtkm::filter::PolicyBase policy) { this->Worklet.SetCapping(this->Capping); this->Worklet.SetNumberOfSides(this->NumberOfSides); this->Worklet.SetRadius(this->Radius); auto originalPoints = vtkm::filter::ApplyPolicyFieldOfType( input.GetCoordinateSystem(this->GetActiveCoordinateSystemIndex()), policy, *this); vtkm::cont::ArrayHandle newPoints; vtkm::cont::CellSetSingleType<> newCells; this->Worklet.Run(originalPoints, input.GetCellSet(), newPoints, newCells); vtkm::cont::DataSet outData; vtkm::cont::CoordinateSystem outCoords("coordinates", newPoints); outData.SetCellSet(newCells); outData.AddCoordinateSystem(outCoords); return outData; } //----------------------------------------------------------------------------- template inline VTKM_CONT bool Tube::DoMapField(vtkm::cont::DataSet& result, const vtkm::cont::ArrayHandle& input, const vtkm::filter::FieldMetadata& fieldMeta, vtkm::filter::PolicyBase) { vtkm::cont::ArrayHandle fieldArray; if (fieldMeta.IsPointField()) fieldArray = this->Worklet.ProcessPointField(input); else if (fieldMeta.IsCellField()) fieldArray = this->Worklet.ProcessCellField(input); else return false; //use the same meta data as the input so we get the same field name, etc. result.AddField(fieldMeta.AsField(fieldArray)); return true; } } } // namespace vtkm::filter #endif