//============================================================================= // // 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 2012 Sandia Corporation. // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, // the U.S. Government retains certain rights in this software. // //============================================================================= #ifndef vtkmlib_DataSetConverters_h #define vtkmlib_DataSetConverters_h #include "vtkAcceleratorsVTKmModule.h" #include "ArrayConverters.h" // for FieldsFlag #include "vtkmConfig.h" //required for general vtkm setup #include class vtkImageData; class vtkStructuredGrid; class vtkPoints; class vtkDataSet; namespace tovtkm { // convert a vtkPoints array into a coordinate system VTKACCELERATORSVTKM_EXPORT vtkm::cont::CoordinateSystem Convert(vtkPoints* points); // convert an structured grid type VTKACCELERATORSVTKM_EXPORT vtkm::cont::DataSet Convert(vtkStructuredGrid* input, FieldsFlag fields = FieldsFlag::None); // determine the type and call the proper Convert routine VTKACCELERATORSVTKM_EXPORT vtkm::cont::DataSet Convert(vtkDataSet* input, FieldsFlag fields = FieldsFlag::None); } #endif // vtkmlib_DataSetConverters_h