vtk-m/vtkm/rendering/MapperVolume.h

58 lines
2.0 KiB
C
Raw Permalink Normal View History

2016-01-20 22:40:54 +00:00
//============================================================================
// Copyright (c) Kitware, Inc.
// All rights reserved.
// See LICENSE.txt for details.
2019-04-15 23:24:21 +00:00
//
2016-01-20 22:40:54 +00:00
// 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_MapperVolume_h
#define vtk_m_rendering_MapperVolume_h
#include <vtkm/rendering/Mapper.h>
2016-01-20 22:40:54 +00:00
#include <memory>
2016-01-20 22:40:54 +00:00
2017-05-18 14:29:41 +00:00
namespace vtkm
{
namespace rendering
{
/// @brief Mapper that renders a volume as a translucent cloud.
class VTKM_RENDERING_EXPORT MapperVolume : public Mapper
{
2016-01-20 22:40:54 +00:00
public:
MapperVolume();
~MapperVolume();
void SetCanvas(vtkm::rendering::Canvas* canvas) override;
virtual vtkm::rendering::Canvas* GetCanvas() const override;
2016-01-20 22:40:54 +00:00
vtkm::rendering::Mapper* NewCopy() const override;
/// @brief Specify how much space is between samples of rays that traverse the volume.
///
/// The volume rendering ray caster finds the entry point of the ray through the volume
/// and then samples the volume along the direction of the ray at regular intervals.
/// This parameter specifies how far these samples occur.
void SetSampleDistance(const vtkm::Float32 distance);
void SetCompositeBackground(const bool compositeBackground);
2017-05-18 14:29:41 +00:00
private:
struct InternalsType;
std::shared_ptr<InternalsType> Internals;
2023-11-08 00:20:05 +00:00
virtual void RenderCellsImpl(const vtkm::cont::UnknownCellSet& 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,
const vtkm::cont::Field& ghostField) override;
2016-01-20 22:40:54 +00:00
};
}
} //namespace vtkm::rendering
#endif //vtk_m_rendering_MapperVolume_h