vtk-m/vtkm/filter/geometry_refinement
Kenneth Moreland a17ebdf52a Deprecated vtkm::filter::FilterField
The original design of the filter base class required several specialized
base classes to control what information was pulled from the input
`DataSet` and provided to the derived class. Since the filter base class was
redesigned, the derived classes all get a `DataSet` and pull their own
information from it. Thus, most specialized filter base classes became
unnecessary and removed.

The one substantial exception was the `FilterField`. This filter base class
managed input and output arrays. This was kept separate from the base
`Filter` because not all filters need the ability to select this
information.

That said, this separation has not been particularly helpful. There are
several other features of `Filter` that does not apply to all subclasses.
Furthermore, there are several derived filters that are using `FilterField`
merely to pick a single part, like selecting a coordinate system, and
ignoring the rest of the abilities.

Thus, it makes more sense to deprecate `FilterField` and have these classes
inherit directly from `Filter`.
2024-02-12 08:13:19 +09:00
..
testing Add a ConvertToPointCloud filter 2023-06-28 12:38:49 -04:00
worklet remove unused variables 2023-08-07 14:51:06 -04:00
CMakeLists.txt Add a ConvertToPointCloud filter 2023-06-28 12:38:49 -04:00
ConvertToPointCloud.cxx Add a ConvertToPointCloud filter 2023-06-28 12:38:49 -04:00
ConvertToPointCloud.h Continue transfer of Users' Guide text 2023-11-21 10:33:45 -07:00
Shrink.cxx Add Shrink filter 2023-03-09 09:48:46 +01:00
Shrink.h Deprecated vtkm::filter::FilterField 2024-02-12 08:13:19 +09:00
SplitSharpEdges.cxx Change all usage of IsField* to Is*Field. 2022-08-29 14:42:02 -04:00
SplitSharpEdges.h Deprecated vtkm::filter::FilterField 2024-02-12 08:13:19 +09:00
Tetrahedralize.cxx Tetrahedralize and Triangulate filters check if input is already triangulated 2023-04-24 12:37:11 +02:00
Tetrahedralize.h Continue transfer of Users' Guide text 2023-11-21 10:33:45 -07:00
Triangulate.cxx Tetrahedralize and Triangulate filters check if input is already triangulated 2023-04-24 12:37:11 +02:00
Triangulate.h Continue transfer of Users' Guide text 2023-11-21 10:33:45 -07:00
Tube.cxx Change all usage of IsField* to Is*Field. 2022-08-29 14:42:02 -04:00
Tube.h Deprecated vtkm::filter::FilterField 2024-02-12 08:13:19 +09:00
VertexClustering.cxx Coordinate systems are stored as Fields 2022-11-11 06:17:58 -07:00
VertexClustering.h Continue transfer of Users' Guide text 2023-11-21 10:33:45 -07:00
vtkm.module Add a ConvertToPointCloud filter 2023-06-28 12:38:49 -04:00