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 
17 class VTKREMOTINGVIEWS_EXPORT vtkFeatureEdgesRepresentation
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
vtkGeometryRepresentationWithFaces::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
vtkGeometryRepresentation::SetGenerateFeatureEdges
virtual void SetGenerateFeatureEdges(bool)
vtkGeometryRepresentation::SetUseOutline
virtual void SetUseOutline(int)
vtkFeatureEdgesRepresentation::SetGenerateFeatureEdges
void SetGenerateFeatureEdges(bool) override
Definition: vtkFeatureEdgesRepresentation.h:29
vtkFeatureEdgesRepresentation::SetPickable
void SetPickable(int) override
Definition: vtkFeatureEdgesRepresentation.h:28
vtkFeatureEdgesRepresentation::SetRepresentation
void SetRepresentation(int) override
Set the representation type.
Definition: vtkFeatureEdgesRepresentation.h:35
vtkGeometryRepresentation::SetRepresentation
virtual void SetRepresentation(int)
Set the representation type.
vtkIndent
vtkGeometryRepresentationWithFaces.h
vtkFeatureEdgesRepresentation
representation for feature edges.
Definition: vtkFeatureEdgesRepresentation.h:17
vtkGeometryRepresentation::SetPickable
virtual void SetPickable(int val)
vtkFeatureEdgesRepresentation::SetRepresentation
void SetRepresentation(const char *) override
Overload to set representation type using string.
Definition: vtkFeatureEdgesRepresentation.h:25
vtkFeatureEdgesRepresentation::SetUseOutline
void SetUseOutline(int) override
Definition: vtkFeatureEdgesRepresentation.h:26
vtkGeometryRepresentation::SetSuppressLOD
virtual void SetSuppressLOD(bool suppress)
Enable/Disable LOD;.
Definition: vtkGeometryRepresentation.h:78
vtkGeometryRepresentationWithFaces
Definition: vtkGeometryRepresentationWithFaces.h:17
vtkGeometryRepresentationWithFaces::New
static vtkGeometryRepresentationWithFaces * New()
vtkFeatureEdgesRepresentation::SetSuppressLOD
void SetSuppressLOD(bool) override
Enable/Disable LOD;.
Definition: vtkFeatureEdgesRepresentation.h:27