vtk-m/vtkm/worklet/PointElevation.h

98 lines
2.8 KiB
C
Raw Normal View History

2015-06-09 15:02:17 +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).
2015-06-09 15:02:17 +00:00
// Copyright 2014 UT-Battelle, LLC.
// Copyright 2014 Los Alamos National Security.
//
// Under the terms of Contract DE-NA0003525 with NTESS,
2015-06-09 15:02:17 +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.
//============================================================================
#ifndef vtk_m_worklet_PointElevation_h
#define vtk_m_worklet_PointElevation_h
#include <vtkm/worklet/WorkletMapField.h>
#include <vtkm/Math.h>
2017-05-18 14:29:41 +00:00
namespace vtkm
{
namespace worklet
{
2015-06-09 15:02:17 +00:00
2017-05-18 14:29:41 +00:00
namespace internal
{
2015-06-09 15:02:17 +00:00
template <typename T>
2017-05-18 14:29:41 +00:00
VTKM_EXEC T clamp(const T& val, const T& min, const T& max)
2015-06-09 15:02:17 +00:00
{
return vtkm::Min(max, vtkm::Max(min, val));
2015-06-09 15:02:17 +00:00
}
}
class PointElevation : public vtkm::worklet::WorkletMapField
{
public:
using ControlSignature = void(FieldIn<Vec3>, FieldOut<Scalar>);
using ExecutionSignature = _2(_1);
2015-06-09 15:02:17 +00:00
VTKM_CONT
2017-05-18 14:29:41 +00:00
PointElevation()
: LowPoint(0.0, 0.0, 0.0)
, HighPoint(0.0, 0.0, 1.0)
, RangeLow(0.0)
, RangeHigh(1.0)
2015-06-09 15:02:17 +00:00
{
}
VTKM_CONT
2017-05-18 14:29:41 +00:00
void SetLowPoint(const vtkm::Vec<vtkm::Float64, 3>& point) { this->LowPoint = point; }
VTKM_CONT
void SetHighPoint(const vtkm::Vec<vtkm::Float64, 3>& point) { this->HighPoint = point; }
2015-06-09 15:02:17 +00:00
VTKM_CONT
2015-06-09 15:02:17 +00:00
void SetRange(vtkm::Float64 low, vtkm::Float64 high)
{
this->RangeLow = low;
this->RangeHigh = high;
}
VTKM_EXEC
2017-05-18 14:29:41 +00:00
vtkm::Float64 operator()(const vtkm::Vec<vtkm::Float64, 3>& vec) const
2015-06-09 15:02:17 +00:00
{
vtkm::Vec<vtkm::Float64, 3> direction = this->HighPoint - this->LowPoint;
vtkm::Float64 lengthSqr = vtkm::Dot(direction, direction);
2015-06-09 15:02:17 +00:00
vtkm::Float64 rangeLength = this->RangeHigh - this->RangeLow;
vtkm::Float64 s = vtkm::Dot(vec - this->LowPoint, direction) / lengthSqr;
2015-06-09 15:02:17 +00:00
s = internal::clamp(s, 0.0, 1.0);
return this->RangeLow + (s * rangeLength);
}
template <typename T>
2017-05-18 14:29:41 +00:00
VTKM_EXEC vtkm::Float64 operator()(const vtkm::Vec<T, 3>& vec) const
{
return (*this)(vtkm::make_Vec(static_cast<vtkm::Float64>(vec[0]),
static_cast<vtkm::Float64>(vec[1]),
static_cast<vtkm::Float64>(vec[2])));
2015-06-09 15:02:17 +00:00
}
private:
vtkm::Vec<vtkm::Float64, 3> LowPoint, HighPoint;
vtkm::Float64 RangeLow, RangeHigh;
};
}
} // namespace vtkm::worklet
#endif // vtk_m_worklet_PointElevation_h