vtk-m2/vtkm/filter/VertexClustering.hxx

83 lines
2.7 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.
// 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 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS).
2016-01-19 14:59:31 +00:00
// Copyright 2014 UT-Battelle, LLC.
// Copyright 2014 Los Alamos National Security.
//
// Under the terms of Contract DE-NA0003525 with NTESS,
2016-01-19 14:59:31 +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.
//============================================================================
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 =
2017-08-24 17:09:48 +00:00
this->Worklet.Run(vtkm::filter::ApplyPolicyUnstructured(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
}
}
}