//============================================================================ // 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_worklet_CrossProduct_h #define vtk_m_worklet_CrossProduct_h #include #include namespace vtkm { namespace worklet { class CrossProduct : public vtkm::worklet::WorkletMapField { public: using ControlSignature = void(FieldIn, FieldIn, FieldOut); template VTKM_EXEC void operator()(const vtkm::Vec& vec1, const vtkm::Vec& vec2, vtkm::Vec& outVec) const { outVec = vtkm::Cross(vec1, vec2); } }; } } // namespace vtkm::worklet #endif // vtk_m_worklet_CrossProduct_h