vtk-m2/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
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
2017-05-18 14:29:41 +00:00
vtkm::cont::DataSet outDataSet =
this->Worklet.Run(vtkm::filter::ApplyPolicyCellSetUnstructured(input.GetCellSet(), policy),
input.GetCoordinateSystem(),
2017-08-24 17:09:48 +00:00
bounds,
this->GetNumberOfDivisions());
2016-01-19 14:59:31 +00:00
return outDataSet;
2016-01-19 14:59:31 +00:00
}
//-----------------------------------------------------------------------------
template <typename T, typename StorageType, typename DerivedPolicy>
2017-08-24 17:09:48 +00:00
inline VTKM_CONT bool VertexClustering::DoMapField(
vtkm::cont::DataSet& result,
2017-08-24 17:09:48 +00:00
const vtkm::cont::ArrayHandle<T, StorageType>& input,
const vtkm::filter::FieldMetadata& fieldMeta,
vtkm::filter::PolicyBase<DerivedPolicy>)
2016-01-19 14:59:31 +00:00
{
2017-08-24 17:09:48 +00:00
vtkm::cont::ArrayHandle<T> fieldArray;
if (fieldMeta.IsPointField())
{
fieldArray = this->Worklet.ProcessPointField(input);
2017-08-24 17:09:48 +00:00
}
else if (fieldMeta.IsCellField())
{
fieldArray = this->Worklet.ProcessCellField(input);
2017-08-24 17:09:48 +00:00
}
else
{
return false;
}
//use the same meta data as the input so we get the same field name, etc.
result.AddField(fieldMeta.AsField(fieldArray));
2017-08-24 17:09:48 +00:00
return true;
2016-01-19 14:59:31 +00:00
}
}
}
#endif