vtk-m/vtkm/filter/VertexClustering.hxx

76 lines
2.3 KiB
C++
Raw Normal View History

2016-01-19 14:59:31 +00:00
//============================================================================
// Copyright (c) Kitware, Inc.
// All rights reserved.
// See LICENSE.txt for details.
2019-04-15 23:24:21 +00:00
//
2016-01-19 14:59:31 +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_filter_VertexClustering_hxx
#define vtk_m_filter_VertexClustering_hxx
2016-01-19 14:59:31 +00:00
#include <vtkm/filter/VertexClustering.h>
#include <vtkm/filter/MapFieldPermutation.h>
2017-05-18 14:29:41 +00:00
namespace vtkm
{
namespace filter
{
2016-01-19 14:59:31 +00:00
//-----------------------------------------------------------------------------
2017-05-18 14:29:41 +00:00
inline VTKM_CONT VertexClustering::VertexClustering()
: vtkm::filter::FilterDataSet<VertexClustering>()
, NumberOfDivisions(256, 256, 256)
2016-01-19 14:59:31 +00:00
{
}
//-----------------------------------------------------------------------------
template <typename DerivedPolicy>
inline VTKM_CONT vtkm::cont::DataSet VertexClustering::DoExecute(
const vtkm::cont::DataSet& input,
const vtkm::filter::PolicyBase<DerivedPolicy>& policy)
2016-01-19 14:59:31 +00:00
{
// todo this code needs to obey the policy for what storage types
// the output should use
//need to compute bounds first
vtkm::Bounds bounds = input.GetCoordinateSystem().GetBounds();
2016-01-19 14:59:31 +00:00
vtkm::cont::DataSet outDataSet = this->Worklet.Run(
vtkm::filter::ApplyPolicyCellSetUnstructured(input.GetCellSet(), policy, *this),
input.GetCoordinateSystem(),
bounds,
this->GetNumberOfDivisions());
2016-01-19 14:59:31 +00:00
return outDataSet;
2016-01-19 14:59:31 +00:00
}
//-----------------------------------------------------------------------------
template <typename DerivedPolicy>
inline VTKM_CONT bool VertexClustering::MapFieldOntoOutput(vtkm::cont::DataSet& result,
const vtkm::cont::Field& field,
vtkm::filter::PolicyBase<DerivedPolicy>)
2016-01-19 14:59:31 +00:00
{
if (field.IsFieldPoint())
2017-08-24 17:09:48 +00:00
{
return vtkm::filter::MapFieldPermutation(field, this->Worklet.GetPointIdMap(), result);
2017-08-24 17:09:48 +00:00
}
else if (field.IsFieldCell())
2017-08-24 17:09:48 +00:00
{
return vtkm::filter::MapFieldPermutation(field, this->Worklet.GetCellIdMap(), result);
2017-08-24 17:09:48 +00:00
}
else if (field.IsFieldGlobal())
{
result.AddField(field);
return true;
}
else
{
return false;
}
2016-01-19 14:59:31 +00:00
}
}
}
#endif