VTK
vtkStripper.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkStripper.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 =========================================================================*/
62 #ifndef vtkStripper_h
63 #define vtkStripper_h
64 
65 #include "vtkFiltersCoreModule.h" // For export macro
66 #include "vtkPolyDataAlgorithm.h"
67 
69 {
70 public:
72  void PrintSelf(ostream& os, vtkIndent indent);
73 
75  static vtkStripper *New();
76 
78 
80  vtkSetClampMacro(MaximumLength,int,4,100000);
81  vtkGetMacro(MaximumLength,int);
83 
85 
87  vtkBooleanMacro(PassCellDataAsFieldData, int);
88  vtkSetMacro(PassCellDataAsFieldData, int);
89  vtkGetMacro(PassCellDataAsFieldData, int);
91 
93 
97  vtkSetMacro(PassThroughCellIds,int);
98  vtkGetMacro(PassThroughCellIds,int);
99  vtkBooleanMacro(PassThroughCellIds,int);
101 
103 
107  vtkSetMacro(PassThroughPointIds,int);
108  vtkGetMacro(PassThroughPointIds,int);
109  vtkBooleanMacro(PassThroughPointIds,int);
111 
112 protected:
115 
116  // Usual data generation method
118 
123 
124 private:
125  vtkStripper(const vtkStripper&); // Not implemented.
126  void operator=(const vtkStripper&); // Not implemented.
127 };
128 
129 #endif
vtkStripper::MaximumLength
int MaximumLength
Definition: vtkStripper.h:119
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:41
vtkTypeMacro
#define vtkTypeMacro(thisClass, superclass)
Definition: vtkSetGet.h:642
vtkStripper::vtkStripper
vtkStripper()
vtkStripper::PassThroughPointIds
int PassThroughPointIds
Definition: vtkStripper.h:122
vtkStripper::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
vtkFiltersCoreModule.h
vtkPolyDataAlgorithm.h
vtkStripper::RequestData
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
vtkSetClampMacro
#define vtkSetClampMacro(name, type, min, max)
Definition: vtkSetGet.h:143
vtkStripper::PassCellDataAsFieldData
int PassCellDataAsFieldData
Definition: vtkStripper.h:120
VTKFILTERSCORE_EXPORT
#define VTKFILTERSCORE_EXPORT
Definition: vtkFiltersCoreModule.h:15
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkStripper::New
static vtkStripper * New()
vtkStripper
create triangle strips and/or poly-lines
Definition: vtkStripper.h:69
vtkGetMacro
#define vtkGetMacro(name, type)
Definition: vtkSetGet.h:93
vtkBooleanMacro
vtkBooleanMacro(IgnoreDriverBugs, bool)
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:86
vtkSetMacro
vtkSetMacro(IgnoreDriverBugs, bool)
vtkStripper::PassThroughCellIds
int PassThroughCellIds
Definition: vtkStripper.h:121
vtkStripper::~vtkStripper
~vtkStripper()
Definition: vtkStripper.h:114
vtkPolyDataAlgorithm
Superclass for algorithms that produce only polydata as output.
Definition: vtkPolyDataAlgorithm.h:44