VTK-m  2.2
SphericalCoordinateTransform.h
Go to the documentation of this file.
1 //============================================================================
2 // Copyright (c) Kitware, Inc.
3 // All rights reserved.
4 // See LICENSE.txt for details.
5 //
6 // This software is distributed WITHOUT ANY WARRANTY; without even
7 // the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
8 // PURPOSE. See the above copyright notice for more information.
9 //============================================================================
10 
11 #ifndef vtk_m_filter_field_transform_SphericalCoordinateTransform_h
12 #define vtk_m_filter_field_transform_SphericalCoordinateTransform_h
13 
14 #include <vtkm/filter/Filter.h>
16 
17 namespace vtkm
18 {
19 namespace filter
20 {
21 namespace field_transform
22 {
23 
33 {
34 public:
36 
38  VTKM_CONT void SetCartesianToSpherical() { CartesianToSpherical = true; }
40  VTKM_CONT void SetSphericalToCartesian() { CartesianToSpherical = false; }
41 
42 private:
43  VTKM_CONT vtkm::cont::DataSet DoExecute(const vtkm::cont::DataSet& input) override;
44 
45  bool CartesianToSpherical = true;
46 };
47 } // namespace field_transform
48 } // namespace filter
49 } // namespace vtkm
50 
51 #endif // vtk_m_filter_field_transform_SphericalCoordinateTransform_h
vtkm
Groups connected points that have the same field value.
Definition: Atomic.h:19
vtkm::cont::DataSet
Contains and manages the geometric data structures that VTK-m operates on.
Definition: DataSet.h:57
vtkm_filter_field_transform_export.h
vtkm::filter::field_transform::SphericalCoordinateTransform::SetCartesianToSpherical
void SetCartesianToSpherical()
Establish a transformation from Cartesian to spherical coordinates.
Definition: SphericalCoordinateTransform.h:38
vtkm::filter::field_transform::SphericalCoordinateTransform::SetSphericalToCartesian
void SetSphericalToCartesian()
Establish a transformation from spherical to Cartesian coordiantes.
Definition: SphericalCoordinateTransform.h:40
vtkm::filter::Filter
Base class for all filters.
Definition: Filter.h:163
VTKM_CONT
#define VTKM_CONT
Definition: ExportMacros.h:57
vtkm::filter::field_transform::SphericalCoordinateTransform
Transform coordinates between Cartesian and spherical.
Definition: SphericalCoordinateTransform.h:32
VTKM_FILTER_FIELD_TRANSFORM_EXPORT
#define VTKM_FILTER_FIELD_TRANSFORM_EXPORT
Definition: vtkm_filter_field_transform_export.h:44
Filter.h