vtk-m2/vtkm/rendering/Scene.h

70 lines
1.9 KiB
C
Raw Normal View History

//============================================================================
// 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_Scene_h
#define vtk_m_rendering_Scene_h
2016-06-02 19:04:01 +00:00
#include <vtkm/rendering/Camera.h>
#include <vtkm/rendering/Plot.h>
#include <vector>
namespace vtkm {
namespace rendering {
class Scene
{
public:
std::vector<vtkm::rendering::Plot> Plots;
2016-06-01 17:51:37 +00:00
Scene() {}
template<typename MapperType, typename SurfaceType>
VTKM_CONT_EXPORT
void Render(MapperType &mapper,
SurfaceType &surface,
2016-06-02 19:04:01 +00:00
vtkm::rendering::Camera &camera)
{
vtkm::Bounds bounds;
mapper.StartScene();
for (std::size_t i = 0; i < this->Plots.size(); i++)
{
this->Plots[i].Render(mapper, surface, camera);
// accumulate all Plots' spatial bounds into the scene spatial bounds
bounds.Include(this->Plots[i].SpatialBounds);
}
mapper.EndScene();
this->SpatialBounds = bounds;
}
const vtkm::Bounds &GetSpatialBounds()
{
return this->SpatialBounds;
}
protected:
vtkm::Bounds SpatialBounds;
};
}} //namespace vtkm::rendering
#endif //vtk_m_rendering_Scene_h