VTK
vtkImplicitBoolean.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImplicitBoolean.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 =========================================================================*/
40 #ifndef vtkImplicitBoolean_h
41 #define vtkImplicitBoolean_h
42 
43 #include "vtkCommonDataModelModule.h" // For export macro
44 #include "vtkImplicitFunction.h"
45 
47 
49 {
50 public:
52  void PrintSelf(ostream& os, vtkIndent indent);
53 
55  {
56  VTK_UNION=0,
59  VTK_UNION_OF_MAGNITUDES
60  };
61 
63  static vtkImplicitBoolean *New();
64 
66 
68  double EvaluateFunction(double x[3]);
69  double EvaluateFunction(double x, double y, double z)
70  {return this->vtkImplicitFunction::EvaluateFunction(x, y, z); } ;
72 
74  void EvaluateGradient(double x[3], double g[3]);
75 
77  unsigned long GetMTime();
78 
80  void AddFunction(vtkImplicitFunction *in);
81 
83  void RemoveFunction(vtkImplicitFunction *in);
84 
86  vtkImplicitFunctionCollection *GetFunction() {return this->FunctionList;};
87 
89 
90  vtkSetClampMacro(OperationType,int,VTK_UNION,VTK_UNION_OF_MAGNITUDES);
91  vtkGetMacro(OperationType,int);
93  {this->SetOperationType(VTK_UNION);};
95  {this->SetOperationType(VTK_INTERSECTION);};
97  {this->SetOperationType(VTK_DIFFERENCE);};
99  {this->SetOperationType(VTK_UNION_OF_MAGNITUDES);};
100  const char *GetOperationTypeAsString();
102 
103 protected:
106 
108 
110 
111 private:
112  vtkImplicitBoolean(const vtkImplicitBoolean&); // Not implemented.
113  void operator=(const vtkImplicitBoolean&); // Not implemented.
114 };
115 
117 
119 {
120  if ( this->OperationType == VTK_UNION )
121  {
122  return "Union";
123  }
124  else if ( this->OperationType == VTK_INTERSECTION )
125  {
126  return "Intersection";
127  }
128  else if ( this->OperationType == VTK_DIFFERENCE )
129  {
130  return "Difference";
131  }
132  else
133  {
134  return "UnionOfMagnitudes";
135  }
136 }
138 
139 #endif
140 
141 
abstract interface for implicit functions
double EvaluateFunction(double x, double y, double z)
virtual double EvaluateFunction(double x[3])=0
implicit function consisting of boolean combinations of implicit functions
unsigned long GetMTime()
maintain a list of implicit functions
virtual void EvaluateGradient(double x[3], double g[3])=0
a simple class to control print indentation
Definition: vtkIndent.h:38
vtkImplicitFunctionCollection * GetFunction()
void PrintSelf(ostream &os, vtkIndent indent)
vtkImplicitFunctionCollection * FunctionList
static vtkObject * New()
void SetOperationTypeToIntersection()
const char * GetOperationTypeAsString()
void SetOperationTypeToUnionOfMagnitudes()
#define VTKCOMMONDATAMODEL_EXPORT