VTK  9.0.2
vtkExtractSubsetWithSeed.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkExtractSubsetWithSeed.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 =========================================================================*/
33 #ifndef vtkExtractSubsetWithSeed_h
34 #define vtkExtractSubsetWithSeed_h
35 
36 #include "vtkDataObjectAlgorithm.h"
37 #include "vtkFiltersParallelDIY2Module.h" // for export macros
38 
40 
41 class VTKFILTERSPARALLELDIY2_EXPORT vtkExtractSubsetWithSeed : public vtkDataObjectAlgorithm
42 {
43 public:
46  void PrintSelf(ostream& os, vtkIndent indent) override;
47 
49 
53  vtkSetVector3Macro(Seed, double);
54  vtkGetVector3Macro(Seed, double);
56 
57  enum
58  {
59  LINE_I = 0,
65  };
67 
71  vtkSetClampMacro(Direction, int, LINE_I, PLANE_KI);
72  vtkGetMacro(Direction, int);
73  void SetDirectionToLineI() { this->SetDirection(LINE_I); }
74  void SetDirectionToLineJ() { this->SetDirection(LINE_J); }
75  void SetDirectionToLineK() { this->SetDirection(LINE_K); }
76  void SetDirectionToPlaneIJ() { this->SetDirection(PLANE_IJ); }
77  void SetDirectionToPlaneJK() { this->SetDirection(PLANE_JK); }
78  void SetDirectionToPlaneKI() { this->SetDirection(PLANE_KI); }
80 
82 
87  vtkGetObjectMacro(Controller, vtkMultiProcessController);
89 protected:
92 
95  vtkInformationVector* outputVector) override;
98  vtkInformationVector* outputVector) override;
99 
100 private:
102  void operator=(const vtkExtractSubsetWithSeed&) = delete;
103 
104  double Seed[3] = { 0, 0, 0 };
105  int Direction = LINE_I;
106  vtkMultiProcessController* Controller = nullptr;
107 };
108 
109 #endif
Superclass for algorithms that produce only data object as output.
extract a line or plane in the ijk space starting with a seed
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
int RequestInformation(vtkInformation *, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int RequestData(vtkInformation *, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
void SetController(vtkMultiProcessController *)
Get/Set the controller to use.
~vtkExtractSubsetWithSeed() override
static vtkExtractSubsetWithSeed * New()
int RequestDataObject(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
a simple class to control print indentation
Definition: vtkIndent.h:34
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Multiprocessing communication superclass.
@ info
Definition: vtkX3D.h:382
@ port
Definition: vtkX3D.h:453