vtkFeatureEdgesRepresentation.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Kitware Inc.
2 // SPDX-License-Identifier: BSD-3-Clause
11 #ifndef vtkFeatureEdgesRepresentation_h
12 #define vtkFeatureEdgesRepresentation_h
13 
15 #include "vtkRemotingViewsModule.h" //needed for exports
16 
19 {
20 public:
23  void PrintSelf(ostream& os, vtkIndent indent) override;
24 
25  void SetRepresentation(const char*) override { this->Superclass::SetRepresentation("Wireframe"); }
26  void SetUseOutline(int) override { this->Superclass::SetUseOutline(0); }
27  void SetSuppressLOD(bool) override { this->Superclass::SetSuppressLOD(true); }
28  void SetPickable(int) override { this->Superclass::SetPickable(0); }
29  void SetGenerateFeatureEdges(bool) override { this->Superclass::SetGenerateFeatureEdges(true); }
30 
31 protected:
34 
35  void SetRepresentation(int) override { this->Superclass::SetRepresentation(WIREFRAME); }
36 
37 private:
39  void operator=(const vtkFeatureEdgesRepresentation&) = delete;
40 };
41 
42 #endif
virtual void SetRepresentation(int)
Set the representation type.
static vtkGeometryRepresentationWithFaces * New()
virtual void SetPickable(int val)
vtkGeometryRepresentationWithFaces extends vtkGeometryRepresentation to add support for rendering bac...
#define VTKREMOTINGVIEWS_EXPORT
void PrintSelf(ostream &os, vtkIndent indent) override
virtual void SetGenerateFeatureEdges(bool)
void SetRepresentation(int) override
Set the representation type.
virtual void SetUseOutline(int)
void SetSuppressLOD(bool) override
Enable/Disable LOD;.
void SetRepresentation(const char *) override
Overload to set representation type using string.
virtual void SetSuppressLOD(bool suppress)
Enable/Disable LOD;.
representation for feature edges.