Go to the documentation of this file.
57 #ifndef vtkm_worklet_contourtree_reset_degrees_h
58 #define vtkm_worklet_contourtree_reset_degrees_h
74 WholeArrayOut updegree,
75 WholeArrayOut downdegree);
83 template <
typename OutFieldPortalType>
85 const OutFieldPortalType& updegree,
86 const OutFieldPortalType& downdegree)
const
88 updegree.Set(superId, 0);
89 downdegree.Set(superId, 0);
VTKM_EXEC void operator()(const vtkm::Id &superId, const OutFieldPortalType &updegree, const OutFieldPortalType &downdegree) const
Definition: ResetDegrees.h:84
#define VTKM_EXEC
Definition: ExportMacros.h:51
Groups connected points that have the same field value.
Definition: Atomic.h:19
#define VTKM_EXEC_CONT
Definition: ExportMacros.h:52
Definition: ResetDegrees.h:70
void(FieldIn superID, WholeArrayOut updegree, WholeArrayOut downdegree) ControlSignature
Definition: ResetDegrees.h:75
vtkm::Int32 Id
Represents an ID (index into arrays).
Definition: Types.h:191
_1 InputDomain
Definition: ResetDegrees.h:77
void(_1, _2, _3) ExecutionSignature
Definition: ResetDegrees.h:76
A control signature tag for input fields.
Definition: WorkletMapField.h:49
VTKM_EXEC_CONT ResetDegrees()
Definition: ResetDegrees.h:81
Base class for worklets that do a simple mapping of field arrays.
Definition: WorkletMapField.h:38