VTK
vtkAssignCoordinates.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkAssignCoordinates.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 2008 Sandia Corporation.
17 Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
18 the U.S. Government retains certain rights in this software.
19-------------------------------------------------------------------------*/
37#ifndef vtkAssignCoordinates_h
38#define vtkAssignCoordinates_h
39
40#include "vtkInfovisLayoutModule.h" // For export macro
42
43class VTKINFOVISLAYOUT_EXPORT vtkAssignCoordinates : public vtkPassInputTypeAlgorithm
44{
45public:
47
49 void PrintSelf(ostream& os, vtkIndent indent);
50
52
55 vtkSetStringMacro(XCoordArrayName);
56 vtkGetStringMacro(XCoordArrayName);
58
60
63 vtkSetStringMacro(YCoordArrayName);
64 vtkGetStringMacro(YCoordArrayName);
66
68
71 vtkSetStringMacro(ZCoordArrayName);
72 vtkGetStringMacro(ZCoordArrayName);
74
76
79 vtkSetMacro(Jitter,bool);
81
82protected:
85
88
89private:
90
91 char* XCoordArrayName;
92 char* YCoordArrayName;
93 char* ZCoordArrayName;
94 bool Jitter;
95
96 vtkAssignCoordinates(const vtkAssignCoordinates&) VTK_DELETE_FUNCTION;
97 void operator=(const vtkAssignCoordinates&) VTK_DELETE_FUNCTION;
98};
99
100#endif
101
Given two(or three) arrays take the values in those arrays and simply assign them to the coordinates ...
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called within ProcessRequest when a request asks the algorithm to do its work.
static vtkAssignCoordinates * New()
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
int FillInputPortInformation(int port, vtkInformation *info)
Fill the input port information objects for this algorithm.
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.
@ info
Definition: vtkX3D.h:376
@ port
Definition: vtkX3D.h:447
vtkSetMacro(IgnoreDriverBugs, bool)
Updates the extensions string.
vtkGetStringMacro(ExtensionsString)
Returns a string listing all available extensions.