VTK  9.2.6
vtkPolyLineRepresentation.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPolyLineRepresentation.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
32 #ifndef vtkPolyLineRepresentation_h
33 #define vtkPolyLineRepresentation_h
34 
35 #include "vtkCurveRepresentation.h"
36 #include "vtkInteractionWidgetsModule.h" // For export macro
37 
38 class vtkPolyLineSource;
40 
41 class VTKINTERACTIONWIDGETS_EXPORT vtkPolyLineRepresentation : public vtkCurveRepresentation
42 {
43 public:
46  void PrintSelf(ostream& os, vtkIndent indent) override;
47 
56  void GetPolyData(vtkPolyData* pd) override;
57 
61  void SetNumberOfHandles(int npts) override;
62 
67 
72  double GetSummedLength() override;
73 
81 
85  void BuildRepresentation() override;
86 
87 protected:
90 
91  // The poly line source
93 
97  int InsertHandleOnLine(double* pos) override;
98 
102  void ClearHandles();
103 
108  void AllocateHandles(int npts);
109 
113  void CreateDefaultHandles(int npts);
114 
121  void ReconfigureHandles(int npts);
122 
123  // Specialized methods to access handles
124  vtkActor* GetHandleActor(int index) override;
126  virtual int GetHandleIndex(vtkProp* prop) override;
127 
128 private:
130  void operator=(const vtkPolyLineRepresentation&) = delete;
131 
132  // Glyphs representing hot spots (e.g., handles)
133  std::vector<vtkSmartPointer<vtkPointHandleSource>> PointHandles;
134  std::vector<vtkSmartPointer<vtkActor>> HandleActors;
135 };
136 
137 #endif
represents an object (geometry & properties) in a rendered scene
Definition: vtkActor.h:161
vtkWidgetRepresentation base class for a widget that represents an curve that connects control points...
dynamic, self-adjusting array of double
interface that can be inherited to define handler sources for any kind of interaction.
a simple class to control print indentation
Definition: vtkIndent.h:119
handle source used to represent points.
represent and manipulate 3D points
Definition: vtkPoints.h:149
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:200
vtkWidgetRepresentation for a poly line.
vtkHandleSource * GetHandleSource(int index) override
virtual int GetHandleIndex(vtkProp *prop) override
returns handle index or -1 on fail
void BuildRepresentation() override
Build the representation for the poly line.
void GetPolyData(vtkPolyData *pd) override
Grab the polydata (including points) that defines the poly line.
vtkActor * GetHandleActor(int index) override
static vtkPolyLineRepresentation * New()
void SetNumberOfHandles(int npts) override
Set the number of handles for this widget.
void AllocateHandles(int npts)
Allocate/Reallocate the handles according to npts.
void CreateDefaultHandles(int npts)
Create npts default handles.
double GetSummedLength() override
Get the true length of the poly line.
vtkNew< vtkPolyLineSource > PolyLineSource
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void ReconfigureHandles(int npts)
Recreate the handles according to a number of points equal to npts.
~vtkPolyLineRepresentation() override
void InitializeHandles(vtkPoints *points) override
Convenience method to allocate and set the handles from a vtkPoints instance.
vtkDoubleArray * GetHandlePositions() override
Get the positions of the handles.
void ClearHandles()
Delete all the handles.
int InsertHandleOnLine(double *pos) override
Specialized method to insert a handle on the poly line.
create a poly line from a list of input points
abstract superclass for all actors, volumes and annotations
Definition: vtkProp.h:76
@ points
Definition: vtkX3D.h:452
@ index
Definition: vtkX3D.h:252