VTK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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 =========================================================================*/
59 #ifndef __vtkStripper_h
60 #define __vtkStripper_h
61 
62 #include "vtkFiltersCoreModule.h" // For export macro
63 #include "vtkPolyDataAlgorithm.h"
64 
66 {
67 public:
69  void PrintSelf(ostream& os, vtkIndent indent);
70 
72  static vtkStripper *New();
73 
75 
77  vtkSetClampMacro(MaximumLength,int,4,100000);
78  vtkGetMacro(MaximumLength,int);
80 
82 
84  vtkBooleanMacro(PassCellDataAsFieldData, int);
85  vtkSetMacro(PassCellDataAsFieldData, int);
86  vtkGetMacro(PassCellDataAsFieldData, int);
88 
90 
94  vtkSetMacro(PassThroughCellIds,int);
95  vtkGetMacro(PassThroughCellIds,int);
96  vtkBooleanMacro(PassThroughCellIds,int);
98 
100 
104  vtkSetMacro(PassThroughPointIds,int);
105  vtkGetMacro(PassThroughPointIds,int);
106  vtkBooleanMacro(PassThroughPointIds,int);
108 
109 protected:
110  vtkStripper();
112 
113  // Usual data generation method
115 
120 
121 private:
122  vtkStripper(const vtkStripper&); // Not implemented.
123  void operator=(const vtkStripper&); // Not implemented.
124 };
125 
126 #endif
Store vtkAlgorithm input/output information.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
#define VTKFILTERSCORE_EXPORT
int MaximumLength
Definition: vtkStripper.h:116
static vtkPolyDataAlgorithm * New()
void PrintSelf(ostream &os, vtkIndent indent)
create triangle strips and/or poly-lines
Definition: vtkStripper.h:65
int PassThroughPointIds
Definition: vtkStripper.h:119
int PassCellDataAsFieldData
Definition: vtkStripper.h:117
Superclass for algorithms that produce only polydata as output.
a simple class to control print indentation
Definition: vtkIndent.h:38
int PassThroughCellIds
Definition: vtkStripper.h:118
Store zero or more vtkInformation instances.