VTK
vtkCenterOfMass.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkCenterOfMass.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=========================================================================*/
31#ifndef vtkCenterOfMass_h
32#define vtkCenterOfMass_h
33
34#include "vtkFiltersCoreModule.h" // For export macro
36
37class vtkPoints;
38class vtkDataArray;
39
40class VTKFILTERSCORE_EXPORT vtkCenterOfMass : public vtkPointSetAlgorithm
41{
42public:
45 void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
46
48
51 vtkSetVector3Macro(Center,double);
52 vtkGetVector3Macro(Center,double);
54
56
59 vtkSetMacro(UseScalarsAsWeights, bool);
60 vtkGetMacro(UseScalarsAsWeights, bool);
62
73 vtkPoints* input, vtkDataArray *scalars, double center[3]);
74
75protected:
77
79 vtkInformationVector** inputVector,
80 vtkInformationVector* outputVector ) VTK_OVERRIDE;
81
82private:
83
84 vtkCenterOfMass(const vtkCenterOfMass&) VTK_DELETE_FUNCTION;
85 void operator=(const vtkCenterOfMass&) VTK_DELETE_FUNCTION;
86
87 bool UseScalarsAsWeights;
88 double Center[3];
89};
90
91#endif
Find the center of mass of a set of points.
int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
This is called by the superclass.
static void ComputeCenterOfMass(vtkPoints *input, vtkDataArray *scalars, double center[3])
This function is called by RequestData.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkCenterOfMass * New()
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:55
a simple class to control print indentation
Definition: vtkIndent.h:40
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce output of the same type as input.
represent and manipulate 3D points
Definition: vtkPoints.h:40
@ center
Definition: vtkX3D.h:230
vtkSetMacro(IgnoreDriverBugs, bool)
Updates the extensions string.