vtk-m/vtkm/rendering/GlyphType.h
Manish Mathai 814ec27f1e Add MapperGlyphScalar and MapperGlyphVector mappers
These mappers can be used to render cell sets as glyphs. The following
glyph types are available for scalar fields:
 - Cube
 - Sphere
 - Axes
 - Quads

For vector fields:
 - Arrows
2022-06-15 15:19:53 -07:00

31 lines
654 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.
//============================================================================
#ifndef vtk_m_rendering_GlyphType_h
#define vtk_m_rendering_GlyphType_h
namespace vtkm
{
namespace rendering
{
enum struct GlyphType
{
Arrow,
Axes,
Cube,
Quad,
Sphere,
};
}
}
#endif