//============================================================================ // 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. //============================================================================ #include #include #include #include #include #include namespace vtkm { namespace filter { //----------------------------------------------------------------------------- inline VTKM_CONT ClipWithField::ClipWithField() : vtkm::filter::FilterDataSetWithField() , ClipValue(0) , Worklet() , Invert(false) { } //----------------------------------------------------------------------------- template inline VTKM_CONT vtkm::cont::DataSet ClipWithField::DoExecute( const vtkm::cont::DataSet& input, const vtkm::cont::ArrayHandle& field, const vtkm::filter::FieldMetadata& fieldMeta, vtkm::filter::PolicyBase policy) { if (fieldMeta.IsPointField() == false) { throw vtkm::cont::ErrorFilterExecution("Point field expected."); } //get the cells and coordinates of the dataset const vtkm::cont::DynamicCellSet& cells = input.GetCellSet(this->GetActiveCellSetIndex()); const vtkm::cont::CoordinateSystem& inputCoords = input.GetCoordinateSystem(this->GetActiveCoordinateSystemIndex()); vtkm::cont::CellSetExplicit<> outputCellSet = this->Worklet.Run( vtkm::filter::ApplyPolicy(cells, policy), field, this->ClipValue, this->Invert); //create the output data vtkm::cont::DataSet output; output.AddCellSet(outputCellSet); // Compute the new boundary points and add them to the output: auto outputCoordsArray = this->Worklet.ProcessPointField(inputCoords.GetData()); vtkm::cont::CoordinateSystem outputCoords(inputCoords.GetName(), outputCoordsArray); output.AddCoordinateSystem(outputCoords); return output; } //----------------------------------------------------------------------------- template inline VTKM_CONT bool ClipWithField::DoMapField( vtkm::cont::DataSet& result, const vtkm::cont::ArrayHandle& input, const vtkm::filter::FieldMetadata& fieldMeta, vtkm::filter::PolicyBase) { vtkm::cont::ArrayHandle output; if (fieldMeta.IsPointField()) { output = this->Worklet.ProcessPointField(input); } else if (fieldMeta.IsCellField()) { output = 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(output)); return true; } } } // end namespace vtkm::filter