vtk-m/vtkm/rendering/raytracing/CylinderExtractor.h

67 lines
2.0 KiB
C
Raw Permalink Normal View History

2018-09-11 02:51:45 +00:00
//============================================================================
// Copyright (c) Kitware, Inc.
// All rights reserved.
// See LICENSE.txt for details.
2019-04-15 23:24:21 +00:00
//
2018-09-11 02:51:45 +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_raytracing_Cylinder_Extractor_h
#define vtk_m_rendering_raytracing_Cylinder_Extractor_h
#include <vtkm/cont/DataSet.h>
namespace vtkm
{
namespace rendering
{
namespace raytracing
{
/**
* \brief CylinderExtractor creates a line segments from
* the edges of a cell set.
*
*/
2018-09-11 02:51:45 +00:00
class CylinderExtractor
{
protected:
vtkm::cont::ArrayHandle<vtkm::Id3> CylIds;
vtkm::cont::ArrayHandle<vtkm::Float32> Radii;
public:
//
// Extract all vertex shapes with constant radius
//
void ExtractCells(const vtkm::cont::UnknownCellSet& cells, vtkm::Float32 radius);
2018-09-11 02:51:45 +00:00
//
// Extract all vertex elements with radius based on scalar values
//
void ExtractCells(const vtkm::cont::UnknownCellSet& cells,
2018-09-11 02:51:45 +00:00
const vtkm::cont::Field& field,
const vtkm::Float32 minRadius,
const vtkm::Float32 maxRadius);
vtkm::cont::ArrayHandle<vtkm::Id3> GetCylIds();
vtkm::cont::ArrayHandle<vtkm::Float32> GetRadii();
vtkm::Id GetNumberOfCylinders() const;
protected:
void SetUniformRadius(const vtkm::Float32 radius);
void SetVaryingRadius(const vtkm::Float32 minRadius,
const vtkm::Float32 maxRadius,
const vtkm::cont::Field& field);
// void SetPointIdsFromCoords(const vtkm::cont::CoordinateSystem& coords);
void SetCylinderIdsFromCells(const vtkm::cont::UnknownCellSet& cells);
2018-09-11 02:51:45 +00:00
}; // class ShapeIntersector
}
}
} //namespace vtkm::rendering::raytracing
#endif //vtk_m_rendering_raytracing_Shape_Extractor_h