VTK  9.2.6
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=========================================================================*/
40#ifndef vtkCenterOfMass_h
41#define vtkCenterOfMass_h
42
43#include "vtkFiltersCoreModule.h" // For export macro
45
46class vtkPoints;
47class vtkDataArray;
48
49class VTKFILTERSCORE_EXPORT vtkCenterOfMass : public vtkPointSetAlgorithm
50{
51public:
54 void PrintSelf(ostream& os, vtkIndent indent) override;
55
57
60 vtkSetVector3Macro(Center, double);
61 vtkGetVector3Macro(Center, double);
63
65
68 vtkSetMacro(UseScalarsAsWeights, bool);
69 vtkGetMacro(UseScalarsAsWeights, bool);
71
81 static void ComputeCenterOfMass(vtkPoints* input, vtkDataArray* scalars, double center[3]);
82
83protected:
85
86 int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
87 vtkInformationVector* outputVector) override;
88
89private:
90 vtkCenterOfMass(const vtkCenterOfMass&) = delete;
91 void operator=(const vtkCenterOfMass&) = delete;
92
93 bool UseScalarsAsWeights;
94 double Center[3];
95};
96
97#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
a simple class to control print indentation
Definition vtkIndent.h:49
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:49