ParaView
vtkMergeCompositeDataSet.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkMergeCompositeDataSet.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 =========================================================================*/
15 /*----------------------------------------------------------------------------
16  Copyright (c) Sandia Corporation
17  See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
18 ----------------------------------------------------------------------------*/
32 #ifndef vtkMergeCompositeDataSet_h
33 #define vtkMergeCompositeDataSet_h
34 
35 #include "vtkPVVTKExtensionsDefaultModule.h" //needed for exports
36 #include "vtkVertexGlyphFilter.h"
37 
38 class VTKPVVTKEXTENSIONSDEFAULT_EXPORT vtkMergeCompositeDataSet : public vtkVertexGlyphFilter
39 {
40 public:
41  vtkTypeMacro(vtkMergeCompositeDataSet, vtkVertexGlyphFilter);
42  virtual void PrintSelf(ostream& os, vtkIndent indent);
43  static vtkMergeCompositeDataSet* New();
44 
45 protected:
47  virtual ~vtkMergeCompositeDataSet();
48 
49  virtual int RequestData(vtkInformation*, vtkInformationVector**, vtkInformationVector*);
50  virtual int FillInputPortInformation(int, vtkInformation*);
51 
52 private:
53  vtkMergeCompositeDataSet(const vtkMergeCompositeDataSet&) VTK_DELETE_FUNCTION;
54  void operator=(const vtkMergeCompositeDataSet&) VTK_DELETE_FUNCTION;
55 };
56 
57 #endif // vtkMergeCompositeDataSet_h
Make a vtkPolyData with a vertex on each point.