VTK
vtkVectorNorm.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkVectorNorm.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 vtkVectorNorm_h
33 #define vtkVectorNorm_h
34 
35 #define VTK_ATTRIBUTE_MODE_DEFAULT 0
36 #define VTK_ATTRIBUTE_MODE_USE_POINT_DATA 1
37 #define VTK_ATTRIBUTE_MODE_USE_CELL_DATA 2
38 
39 #include "vtkFiltersCoreModule.h" // For export macro
40 #include "vtkDataSetAlgorithm.h"
41 
43 {
44 public:
46  void PrintSelf(ostream& os, vtkIndent indent);
47 
49  static vtkVectorNorm *New();
50 
52 
53  vtkSetMacro(Normalize,int);
54  vtkGetMacro(Normalize,int);
55  vtkBooleanMacro(Normalize,int);
57 
59 
65  vtkSetMacro(AttributeMode,int);
66  vtkGetMacro(AttributeMode,int);
68  {this->SetAttributeMode(VTK_ATTRIBUTE_MODE_DEFAULT);};
70  {this->SetAttributeMode(VTK_ATTRIBUTE_MODE_USE_POINT_DATA);};
72  {this->SetAttributeMode(VTK_ATTRIBUTE_MODE_USE_CELL_DATA);};
73  const char *GetAttributeModeAsString();
75 
76 protected:
77  vtkVectorNorm();
79 
81 
82  int Normalize; // normalize 0<=n<=1 if true.
83  int AttributeMode; //control whether to use point or cell data, or both
84 private:
85  vtkVectorNorm(const vtkVectorNorm&); // Not implemented.
86  void operator=(const vtkVectorNorm&); // Not implemented.
87 };
88 
89 #endif
void SetAttributeModeToUsePointData()
Definition: vtkVectorNorm.h:69
void SetAttributeModeToUseCellData()
Definition: vtkVectorNorm.h:71
Store vtkAlgorithm input/output information.
#define VTK_ATTRIBUTE_MODE_USE_CELL_DATA
Definition: vtkVectorNorm.h:37
#define VTK_ATTRIBUTE_MODE_USE_POINT_DATA
Definition: vtkVectorNorm.h:36
#define VTKFILTERSCORE_EXPORT
generate scalars from Euclidean norm of vectors
Definition: vtkVectorNorm.h:42
#define VTK_ATTRIBUTE_MODE_DEFAULT
Definition: vtkVectorNorm.h:35
a simple class to control print indentation
Definition: vtkIndent.h:38
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
Store zero or more vtkInformation instances.
void PrintSelf(ostream &os, vtkIndent indent)
Superclass for algorithms that produce output of the same type as input.
static vtkDataSetAlgorithm * New()
void SetAttributeModeToDefault()
Definition: vtkVectorNorm.h:67