vtk-m/vtkm/worklet/SurfaceNormals.h
Kenneth Moreland bddad9b386 Remove TryExecute from filters
Now that the dispatcher does its own TryExecute, filters do not need to
do that. This change requires all worklets called by filters to be able
to execute without knowing the device a priori.
2018-10-16 15:59:53 -06:00

224 lines
6.8 KiB
C++

//============================================================================
// 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 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS).
// Copyright 2017 UT-Battelle, LLC.
// Copyright 2017 Los Alamos National Security.
//
// Under the terms of Contract DE-NA0003525 with NTESS,
// 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 vtk_m_worklet_SurfaceNormals_h
#define vtk_m_worklet_SurfaceNormals_h
#include <vtkm/worklet/DispatcherMapTopology.h>
#include <vtkm/worklet/WorkletMapTopology.h>
#include <vtkm/CellTraits.h>
#include <vtkm/TypeTraits.h>
#include <vtkm/VectorAnalysis.h>
namespace vtkm
{
namespace worklet
{
namespace detail
{
struct PassThrough
{
template <typename T>
VTKM_EXEC vtkm::Vec<T, 3> operator()(const vtkm::Vec<T, 3>& in) const
{
return in;
}
};
struct Normal
{
template <typename T>
VTKM_EXEC vtkm::Vec<T, 3> operator()(const vtkm::Vec<T, 3>& in) const
{
return vtkm::Normal(in);
}
};
} // detail
class FacetedSurfaceNormals
{
public:
template <typename NormalFnctr = detail::Normal>
class Worklet : public vtkm::worklet::WorkletMapPointToCell
{
public:
using ControlSignature = void(CellSetIn cellset,
FieldInPoint<Vec3> points,
FieldOutCell<Vec3> normals);
using ExecutionSignature = void(CellShape, _2, _3);
using InputDomain = _1;
template <typename CellShapeTag, typename PointsVecType, typename T>
VTKM_EXEC void operator()(CellShapeTag,
const PointsVecType& points,
vtkm::Vec<T, 3>& normal) const
{
using CTraits = vtkm::CellTraits<CellShapeTag>;
const auto tag = typename CTraits::TopologicalDimensionsTag();
this->Compute(tag, points, normal);
}
template <vtkm::IdComponent Dim, typename PointsVecType, typename T>
VTKM_EXEC void Compute(vtkm::CellTopologicalDimensionsTag<Dim>,
const PointsVecType&,
vtkm::Vec<T, 3>& normal) const
{
normal = vtkm::TypeTraits<vtkm::Vec<T, 3>>::ZeroInitialization();
}
template <typename PointsVecType, typename T>
VTKM_EXEC void Compute(vtkm::CellTopologicalDimensionsTag<2>,
const PointsVecType& points,
vtkm::Vec<T, 3>& normal) const
{
normal = this->Normal(vtkm::Cross(points[2] - points[1], points[0] - points[1]));
}
template <typename PointsVecType, typename T>
VTKM_EXEC void operator()(vtkm::CellShapeTagGeneric shape,
const PointsVecType& points,
vtkm::Vec<T, 3>& normal) const
{
switch (shape.Id)
{
vtkmGenericCellShapeMacro(this->operator()(CellShapeTag(), points, normal));
default:
this->RaiseError("unknown cell type");
break;
}
}
private:
NormalFnctr Normal;
};
FacetedSurfaceNormals()
: Normalize(true)
{
}
/// Set/Get if the results should be normalized
void SetNormalize(bool value) { this->Normalize = value; }
bool GetNormalize() const { return this->Normalize; }
template <typename CellSetType,
typename CoordsCompType,
typename CoordsStorageType,
typename NormalCompType>
void Run(const CellSetType& cellset,
const vtkm::cont::ArrayHandle<vtkm::Vec<CoordsCompType, 3>, CoordsStorageType>& points,
vtkm::cont::ArrayHandle<vtkm::Vec<NormalCompType, 3>>& normals)
{
if (this->Normalize)
{
vtkm::worklet::DispatcherMapTopology<Worklet<>>().Invoke(cellset, points, normals);
}
else
{
vtkm::worklet::DispatcherMapTopology<Worklet<detail::PassThrough>>().Invoke(
cellset, points, normals);
}
}
template <typename CellSetType, typename CoordsStorageList, typename NormalCompType>
void Run(
const CellSetType& cellset,
const vtkm::cont::DynamicArrayHandleBase<vtkm::TypeListTagFieldVec3, CoordsStorageList>& points,
vtkm::cont::ArrayHandle<vtkm::Vec<NormalCompType, 3>>& normals)
{
if (this->Normalize)
{
vtkm::worklet::DispatcherMapTopology<Worklet<>>().Invoke(cellset, points, normals);
}
else
{
vtkm::worklet::DispatcherMapTopology<Worklet<detail::PassThrough>>().Invoke(
cellset, points, normals);
}
}
private:
bool Normalize;
};
class SmoothSurfaceNormals
{
public:
class Worklet : public vtkm::worklet::WorkletMapCellToPoint
{
public:
using ControlSignature = void(CellSetIn cellset,
FieldInCell<Vec3> faceNormals,
FieldOutPoint<Vec3> pointNormals);
using ExecutionSignature = void(CellCount, _2, _3);
using InputDomain = _1;
template <typename FaceNormalsVecType, typename T>
VTKM_EXEC void operator()(vtkm::IdComponent numCells,
const FaceNormalsVecType& faceNormals,
vtkm::Vec<T, 3>& pointNormal) const
{
if (numCells == 0)
{
pointNormal = vtkm::TypeTraits<vtkm::Vec<T, 3>>::ZeroInitialization();
}
else
{
auto result = faceNormals[0];
for (vtkm::IdComponent i = 1; i < numCells; ++i)
{
result += faceNormals[i];
}
pointNormal = vtkm::Normal(result);
}
}
};
template <typename CellSetType, typename NormalCompType, typename FaceNormalStorageType>
void Run(
const CellSetType& cellset,
const vtkm::cont::ArrayHandle<vtkm::Vec<NormalCompType, 3>, FaceNormalStorageType>& faceNormals,
vtkm::cont::ArrayHandle<vtkm::Vec<NormalCompType, 3>>& pointNormals)
{
vtkm::worklet::DispatcherMapTopology<Worklet>().Invoke(cellset, faceNormals, pointNormals);
}
template <typename CellSetType,
typename FaceNormalTypeList,
typename FaceNormalStorageList,
typename NormalCompType>
void Run(const CellSetType& cellset,
const vtkm::cont::DynamicArrayHandleBase<FaceNormalTypeList, FaceNormalStorageList>&
faceNormals,
vtkm::cont::ArrayHandle<vtkm::Vec<NormalCompType, 3>>& pointNormals)
{
vtkm::worklet::DispatcherMapTopology<Worklet>().Invoke(cellset, faceNormals, pointNormals);
}
};
}
} // vtkm::worklet
#endif // vtk_m_worklet_SurfaceNormals_h