vtk-m/vtkm/worklet/MaskPoints.h

58 lines
2.0 KiB
C
Raw Normal View History

2017-03-08 23:04:12 +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 National Technology & Engineering Solutions of Sandia, LLC (NTESS).
2017-03-08 23:04:12 +00:00
// Copyright 2015 UT-Battelle, LLC.
// Copyright 2015 Los Alamos National Security.
//
// Under the terms of Contract DE-NA0003525 with NTESS,
2017-03-08 23:04:12 +00:00
// 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 vtkm_m_worklet_MaskPoints_h
#define vtkm_m_worklet_MaskPoints_h
#include <vtkm/cont/ArrayCopy.h>
2017-03-08 23:04:12 +00:00
#include <vtkm/cont/ArrayHandle.h>
#include <vtkm/cont/ArrayHandleCounting.h>
2017-05-18 14:51:24 +00:00
#include <vtkm/cont/DataSet.h>
2017-03-08 23:04:12 +00:00
2017-05-18 14:29:41 +00:00
namespace vtkm
{
namespace worklet
{
2017-03-08 23:04:12 +00:00
// Subselect points using stride for now, creating new cellset of vertices
class MaskPoints
2017-03-08 23:04:12 +00:00
{
public:
template <typename CellSetType>
vtkm::cont::CellSetSingleType<> Run(const CellSetType& cellSet, const vtkm::Id stride)
2017-03-08 23:04:12 +00:00
{
vtkm::Id numberOfInputPoints = cellSet.GetNumberOfPoints();
vtkm::Id numberOfSampledPoints = numberOfInputPoints / stride;
vtkm::cont::ArrayHandleCounting<vtkm::Id> strideArray(0, stride, numberOfSampledPoints);
vtkm::cont::ArrayHandle<vtkm::Id> pointIds;
vtkm::cont::ArrayCopy(strideArray, pointIds);
2017-03-08 23:04:12 +00:00
// Make CellSetSingleType with VERTEX at each point id
2017-05-18 14:29:41 +00:00
vtkm::cont::CellSetSingleType<> outCellSet("cells");
outCellSet.Fill(numberOfInputPoints, vtkm::CellShapeTagVertex::Id, 1, pointIds);
2017-03-08 23:04:12 +00:00
return outCellSet;
}
};
}
} // namespace vtkm::worklet
#endif // vtkm_m_worklet_MaskPoints_h