VTK  9.2.5
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) override;
46
48
51 vtkSetVector3Macro(Center, double);
52 vtkGetVector3Macro(Center, double);
54
56
59 vtkSetMacro(UseScalarsAsWeights, bool);
60 vtkGetMacro(UseScalarsAsWeights, bool);
62
72 static void ComputeCenterOfMass(vtkPoints* input, vtkDataArray* scalars, double center[3]);
73
74protected:
76
77 int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
78 vtkInformationVector* outputVector) override;
79
80private:
81 vtkCenterOfMass(const vtkCenterOfMass&) = delete;
82 void operator=(const vtkCenterOfMass&) = delete;
83
84 bool UseScalarsAsWeights;
85 double Center[3];
86};
87
88#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:56
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