//============================================================================ // 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_rendering_raytracing_MeshConnectivityBuilder_h #define vtk_m_rendering_raytracing_MeshConnectivityBuilder_h #include #include namespace vtkm { namespace rendering { namespace raytracing { class MeshConnectivityBuilder { public: MeshConnectivityBuilder(); ~MeshConnectivityBuilder(); VTKM_CONT MeshConnectivityContainer* BuildConnectivity(const vtkm::cont::UnknownCellSet& cellset, const vtkm::cont::CoordinateSystem& coordinates); VTKM_CONT vtkm::cont::ArrayHandle ExternalTrianglesStructured( vtkm::cont::CellSetStructured<3>& cellSetStructured); vtkm::cont::ArrayHandle GetFaceConnectivity(); vtkm::cont::ArrayHandle GetFaceOffsets(); vtkm::cont::ArrayHandle GetTriangles(); protected: VTKM_CONT void BuildConnectivity(vtkm::cont::CellSetSingleType<>& cellSetUnstructured, const vtkm::cont::CoordinateSystem::MultiplexerArrayType& coordinates, vtkm::Bounds coordsBounds); VTKM_CONT void BuildConnectivity(vtkm::cont::CellSetExplicit<>& cellSetUnstructured, const vtkm::cont::CoordinateSystem::MultiplexerArrayType& coordinates, vtkm::Bounds coordsBounds); vtkm::cont::ArrayHandle FaceConnectivity; vtkm::cont::ArrayHandle FaceOffsets; vtkm::cont::ArrayHandle Triangles; }; } } } //namespace vtkm::rendering::raytracing #endif