//============================================================================ // 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. // // Copyright 2017 Sandia Corporation. // Copyright 2017 UT-Battelle, LLC. // Copyright 2017 Los Alamos National Security. // // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, // the U.S. Government retains certain rights in this software. // // Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National // Laboratory (LANL), the U.S. Government retains certain rights in // this software. //============================================================================ #ifndef vtk_m_filter_ClipWithImplicitFunction_h #define vtk_m_filter_ClipWithImplicitFunction_h #include #include #include #include namespace vtkm { namespace filter { /// \brief Clip a dataset using an implicit function /// /// Clip a dataset using a given implicit function value, such as vtkm::cont::Sphere /// or vtkm::cont::Frustum. /// The resulting geometry will not be water tight. class ClipWithImplicitFunction : public vtkm::filter::FilterDataSet { public: template void SetImplicitFunction(const std::shared_ptr& func, const vtkm::filter::PolicyBase& policy); template void SetImplicitFunction(const std::shared_ptr& func) { this->Function = func; } std::shared_ptr GetImplicitFunction() const { return this->Function; } template vtkm::filter::ResultDataSet DoExecute(const vtkm::cont::DataSet& input, const vtkm::filter::PolicyBase& policy, const DeviceAdapter& tag); //Map a new field onto the resulting dataset after running the filter. //This call is only valid after Execute has been called. template bool DoMapField(vtkm::filter::ResultDataSet& result, const vtkm::cont::ArrayHandle& input, const vtkm::filter::FieldMetadata& fieldMeta, const vtkm::filter::PolicyBase& policy, const DeviceAdapter& tag); private: std::shared_ptr Function; vtkm::worklet::Clip Worklet; }; } } // namespace vtkm::filter #include #endif // vtk_m_filter_ClipWithImplicitFunction_h