Latest master branch: Undefined function calls in examples/clipping/Clipping.cxx
In Lines 73 and 86 of examples/clipping/Clipping.cxx, calls are made to the function ProcessField(...)
, which is no longer defined in the worklet vtkm/worklet/Clip.h:
vtkm::worklet::Clip clip; vtkm::cont::DynamicArrayHandle coords = clip.ProcessField(input.GetCoordinateSystem(0), DeviceAdapter()); vtkm::cont::DynamicArrayHandle data = clip.ProcessField(inField.GetData().ResetTypeList(vtkm::TypeListTagAll()), DeviceAdapter());
Only ProcessCellField
and ProcessPointField
are defined in Clip.h
. I think the ProcessPointField
function may be the appropriate replacement/fix, but the contributors to this worklet should confirm. I currently receive compile errors for this with Examples turned ON.