vtk-m/vtkm/rendering/MapperVolume.h

107 lines
3.7 KiB
C
Raw Normal View History

2016-01-20 22:40:54 +00:00
//============================================================================
// 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 2015 Sandia Corporation.
// Copyright 2015 UT-Battelle, LLC.
// Copyright 2015 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_rendering_MapperVolume_h
#define vtk_m_rendering_MapperVolume_h
#include <vtkm/rendering/Camera.h>
#include <vtkm/rendering/CanvasRayTracer.h>
2016-01-20 22:40:54 +00:00
#include <vtkm/rendering/ColorTable.h>
#include <vtkm/rendering/Mapper.h>
2016-01-20 22:40:54 +00:00
#include <vtkm/rendering/Triangulator.h>
2016-05-18 23:30:07 +00:00
#include <vtkm/rendering/raytracing/VolumeRendererStructured.h>
2016-01-20 22:40:54 +00:00
#include <vtkm/rendering/raytracing/Camera.h>
#include <typeinfo>
namespace vtkm {
namespace rendering {
template<typename DeviceAdapter = VTKM_DEFAULT_DEVICE_ADAPTER_TAG>
class MapperVolume : public Mapper
{
2016-01-20 22:40:54 +00:00
protected:
2016-05-18 23:30:07 +00:00
vtkm::rendering::raytracing::VolumeRendererStructured<DeviceAdapter> Tracer;
CanvasRayTracer *Canvas;
2016-01-20 22:40:54 +00:00
public:
VTKM_CONT_EXPORT
MapperVolume()
2016-05-18 17:25:05 +00:00
{
this->Canvas = nullptr;
2016-05-18 17:25:05 +00:00
}
2016-01-20 22:40:54 +00:00
VTKM_CONT_EXPORT
void SetNumberOfSamples(const vtkm::Int32 &numSamples)
{
Tracer.SetNumberOfSamples(numSamples);
}
2016-05-18 17:25:05 +00:00
VTKM_CONT_EXPORT
void SetCanvas(vtkm::rendering::Canvas *canvas)
2016-05-18 17:25:05 +00:00
{
if(canvas != nullptr)
2016-05-18 17:25:05 +00:00
{
this->Canvas = dynamic_cast<CanvasRayTracer*>(canvas);
if(this->Canvas == nullptr)
2016-05-18 17:25:05 +00:00
{
throw vtkm::cont::ErrorControlBadValue(
"Volume Render: bad canvas type. Must be CanvasRayTracer");
2016-05-18 17:25:05 +00:00
}
}
}
2016-01-20 22:40:54 +00:00
VTKM_CONT_EXPORT
virtual void RenderCells(const vtkm::cont::DynamicCellSet &cellset,
const vtkm::cont::CoordinateSystem &coords,
const vtkm::cont::Field &scalarField,
const vtkm::rendering::ColorTable &, //colorTable
const vtkm::rendering::Camera &camera,
const vtkm::Range &scalarRange)
2016-01-20 22:40:54 +00:00
{
// vtkm::cont::DynamicArrayHandleCoordinateSystem dynamicCoordsHandle = coords.GetData();
vtkm::Bounds coordsBounds = coords.GetBounds(DeviceAdapter());
2016-01-20 22:40:54 +00:00
2016-02-12 18:42:54 +00:00
if(!cellset.IsSameType(vtkm::cont::CellSetStructured<3>()))
2016-01-20 22:40:54 +00:00
{
std::cerr<<"ERROR cell set type not currently supported\n";
std::string theType = typeid(cellset).name();
std::cerr<<"Type : "<<theType<<std::endl;
2016-01-20 22:40:54 +00:00
}
else
{
2016-02-12 18:42:54 +00:00
vtkm::cont::CellSetStructured<3> cellSetStructured3D = cellset.Cast<vtkm::cont::CellSetStructured<3> >();
2016-05-18 17:25:05 +00:00
//vtkm::cont::ArrayHandleUniformPointCoordinates vertices;
//vertices = dynamicCoordsHandle.Cast<vtkm::cont::ArrayHandleUniformPointCoordinates>();
this->Tracer.GetCamera().SetParameters(camera, *this->Canvas);
this->Tracer.SetData(coords,
scalarField,
coordsBounds,
cellSetStructured3D,
scalarRange);
this->Tracer.SetColorMap(this->ColorMap);
this->Tracer.SetBackgroundColor(
this->Canvas->GetBackgroundColor().Components);
this->Tracer.Render(this->Canvas);
2016-01-20 22:40:54 +00:00
}
2016-01-20 22:40:54 +00:00
}
};
}} //namespace vtkm::rendering
#endif //vtk_m_rendering_MapperVolume_h