//============================================================================ // 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_MapperRayTracer_h #define vtk_m_rendering_MapperRayTracer_h #include #include #include #include namespace vtkm { namespace rendering { class VTKM_RENDERING_EXPORT MapperRayTracer : public Mapper { public: MapperRayTracer(); ~MapperRayTracer(); void SetCanvas(vtkm::rendering::Canvas* canvas) override; virtual vtkm::rendering::Canvas* GetCanvas() const override; void RenderCells(const vtkm::cont::DynamicCellSet& cellset, const vtkm::cont::CoordinateSystem& coords, const vtkm::cont::Field& scalarField, const vtkm::cont::ColorTable& colorTable, const vtkm::rendering::Camera& camera, const vtkm::Range& scalarRange) override; void SetCompositeBackground(bool on); vtkm::rendering::Mapper* NewCopy() const override; void SetShadingOn(bool on); private: struct InternalsType; std::shared_ptr Internals; }; } } //namespace vtkm::rendering #endif //vtk_m_rendering_MapperRayTracer_h