Loading [MathJax]/extensions/tex2jax.js
VTK  9.4.20250403
DataSetConverters.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-FileCopyrightText: Copyright (c) Kitware, Inc.
3// SPDX-FileCopyrightText: Copyright 2012 Sandia Corporation.
4// SPDX-License-Identifier: LicenseRef-BSD-3-Clause-Sandia-USGov
5
6#ifndef vtkmlib_DataSetConverters_h
7#define vtkmlib_DataSetConverters_h
8
9#include "vtkAcceleratorsVTKmDataModelModule.h"
10
11#include "ArrayConverters.h" // for FieldsFlag
12
13#include "vtkmConfigDataModel.h" //required for general vtkm setup
14
15#include <vtkm/cont/DataSet.h>
16
17VTK_ABI_NAMESPACE_BEGIN
18class vtkDataSet;
20class vtkImageData;
21class vtkPoints;
24VTK_ABI_NAMESPACE_END
25
26namespace tovtkm
27{
28VTK_ABI_NAMESPACE_BEGIN
29
30// convert a vtkPoints array into a coordinate system
31VTKACCELERATORSVTKMDATAMODEL_EXPORT
32vtkm::cont::CoordinateSystem Convert(vtkPoints* points);
33
34// convert an structured grid type
35VTKACCELERATORSVTKMDATAMODEL_EXPORT
36vtkm::cont::DataSet Convert(vtkStructuredGrid* input, FieldsFlag fields = FieldsFlag::None);
37
38// convert a rectilinear grid type
39VTKACCELERATORSVTKMDATAMODEL_EXPORT
40vtkm::cont::DataSet Convert(vtkRectilinearGrid* input, FieldsFlag fields);
41
42// determine the type and call the proper Convert routine
43VTKACCELERATORSVTKMDATAMODEL_EXPORT
44vtkm::cont::DataSet Convert(vtkDataSet* input, FieldsFlag fields = FieldsFlag::None);
45VTK_ABI_NAMESPACE_END
46}
47
48namespace fromvtkm
49{
50VTK_ABI_NAMESPACE_BEGIN
51
52VTKACCELERATORSVTKMDATAMODEL_EXPORT
54
55VTKACCELERATORSVTKMDATAMODEL_EXPORT
56bool Convert(const vtkm::cont::DataSet& vtkmOut, vtkRectilinearGrid* output, vtkDataSet* input);
57
58VTKACCELERATORSVTKMDATAMODEL_EXPORT
59bool Convert(const vtkm::cont::DataSet& vtkmOut, vtkStructuredGrid* output, vtkDataSet* input);
60
61VTK_ABI_NAMESPACE_END
62}
63
64#endif // vtkmlib_DataSetConverters_h
represent and manipulate attribute data in a dataset
abstract class to specify dataset behavior
Definition vtkDataSet.h:165
topologically and geometrically regular array of data
represent and manipulate 3D points
Definition vtkPoints.h:139
a dataset that is topologically regular with variable spacing in the three coordinate directions
topologically regular array of data
VTKACCELERATORSVTKMDATAMODEL_EXPORT void PassAttributesInformation(vtkDataSetAttributes *input, vtkDataSetAttributes *output)
VTKACCELERATORSVTKMCORE_EXPORT vtkDataArray * Convert(const vtkm::cont::Field &input)
VTKACCELERATORSVTKMDATAMODEL_EXPORT vtkm::cont::Field Convert(vtkDataArray *input, int association)