vtk-m/vtkm/filter/flow/Pathline.cxx
2022-08-01 08:00:46 -04:00

28 lines
735 B
C++

//============================================================================
// 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.
//============================================================================
#include <vtkm/filter/flow/Pathline.h>
namespace vtkm
{
namespace filter
{
namespace flow
{
VTKM_CONT vtkm::filter::flow::FlowResultType Pathline::GetResultType() const
{
return vtkm::filter::flow::FlowResultType::STREAMLINE_TYPE;
}
}
}
} // namespace vtkm::filter::flow