vtk-m/vtkm/filter/ExtractStructured.hxx

81 lines
2.7 KiB
C++
Raw Normal View History

2017-04-18 14:32:13 +00:00
//============================================================================
// Copyright (c) Kitware, Inc.
// All rights reserved.
// See LICENSE.txt for details.
2019-04-15 23:24:21 +00:00
//
2017-04-18 14:32:13 +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.
//============================================================================
2017-05-18 14:29:41 +00:00
namespace vtkm
{
namespace filter
{
2017-04-18 14:32:13 +00:00
//-----------------------------------------------------------------------------
2017-05-18 14:29:41 +00:00
inline VTKM_CONT ExtractStructured::ExtractStructured()
: vtkm::filter::FilterDataSet<ExtractStructured>()
, VOI(vtkm::RangeId3(0, -1, 0, -1, 0, -1))
2017-05-18 14:29:41 +00:00
, SampleRate(vtkm::Id3(1, 1, 1))
, IncludeBoundary(false)
, IncludeOffset(false)
2017-05-18 14:29:41 +00:00
, Worklet()
2017-04-18 14:32:13 +00:00
{
}
//-----------------------------------------------------------------------------
template <typename DerivedPolicy>
inline VTKM_CONT vtkm::cont::DataSet ExtractStructured::DoExecute(
const vtkm::cont::DataSet& input,
vtkm::filter::PolicyBase<DerivedPolicy> policy)
2017-04-18 14:32:13 +00:00
{
2017-05-18 14:29:41 +00:00
const vtkm::cont::DynamicCellSet& cells = input.GetCellSet(this->GetActiveCellSetIndex());
const vtkm::cont::CoordinateSystem& coordinates =
input.GetCoordinateSystem(this->GetActiveCellSetIndex());
2017-04-18 14:32:13 +00:00
auto cellset = this->Worklet.Run(vtkm::filter::ApplyPolicyStructured(cells, policy),
this->VOI,
this->SampleRate,
2019-04-17 00:18:24 +00:00
this->IncludeBoundary,
this->IncludeOffset);
auto coords = this->Worklet.MapCoordinates(coordinates);
vtkm::cont::CoordinateSystem outputCoordinates(coordinates.GetName(), coords);
2017-04-18 14:32:13 +00:00
vtkm::cont::DataSet output;
output.AddCellSet(vtkm::cont::DynamicCellSet(cellset));
output.AddCoordinateSystem(outputCoordinates);
return output;
2017-04-18 14:32:13 +00:00
}
//-----------------------------------------------------------------------------
template <typename T, typename StorageType, typename DerivedPolicy>
2017-05-18 14:29:41 +00:00
inline VTKM_CONT bool ExtractStructured::DoMapField(
vtkm::cont::DataSet& result,
const vtkm::cont::ArrayHandle<T, StorageType>& input,
const vtkm::filter::FieldMetadata& fieldMeta,
vtkm::filter::PolicyBase<DerivedPolicy>)
2017-04-18 14:32:13 +00:00
{
2017-05-18 14:29:41 +00:00
if (fieldMeta.IsPointField())
2017-04-18 14:32:13 +00:00
{
vtkm::cont::ArrayHandle<T> output = this->Worklet.ProcessPointField(input);
2017-04-18 14:32:13 +00:00
result.AddField(fieldMeta.AsField(output));
2017-04-18 14:32:13 +00:00
return true;
}
2017-05-18 14:29:41 +00:00
2017-04-18 14:32:13 +00:00
// cell data must be scattered to the cells created per input cell
2017-05-18 14:29:41 +00:00
if (fieldMeta.IsCellField())
2017-04-18 14:32:13 +00:00
{
vtkm::cont::ArrayHandle<T> output = this->Worklet.ProcessCellField(input);
2017-04-18 14:32:13 +00:00
result.AddField(fieldMeta.AsField(output));
2017-04-18 14:32:13 +00:00
return true;
}
return false;
}
}
}