VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
TextAnalysis
vtkScaleDimension.h
Go to the documentation of this file.
1
/*=========================================================================
2
3
Program: Visualization Toolkit
4
Module: vtkScaleDimension.h
5
6
-------------------------------------------------------------------------
7
Copyright 2008 Sandia Corporation.
8
Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
9
the U.S. Government retains certain rights in this software.
10
-------------------------------------------------------------------------
11
12
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
13
All rights reserved.
14
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
15
16
This software is distributed WITHOUT ANY WARRANTY; without even
17
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
18
PURPOSE. See the above copyright notice for more information.
19
20
=========================================================================*/
21
49
#ifndef __vtkScaleDimension_h
50
#define __vtkScaleDimension_h
51
52
#include <
vtkArrayDataAlgorithm.h
>
53
54
class
VTK_TEXT_ANALYSIS_EXPORT
vtkScaleDimension
:
55
public
vtkArrayDataAlgorithm
56
{
57
public
:
58
static
vtkScaleDimension
*
New
();
59
vtkTypeMacro(
vtkScaleDimension
,
vtkArrayDataAlgorithm
);
60
void
PrintSelf
(ostream& os,
vtkIndent
indent);
61
63
64
vtkGetMacro(Dimension,
int
);
65
vtkSetMacro(Dimension,
int
);
67
69
70
vtkSetMacro(Invert,
int
);
71
vtkGetMacro(Invert,
int
);
73
74
//BTX
75
protected
:
76
vtkScaleDimension
();
77
~
vtkScaleDimension
();
78
79
virtual
int
FillInputPortInformation
(
int
,
vtkInformation
*);
80
81
int
RequestData
(
82
vtkInformation
*,
83
vtkInformationVector
**,
84
vtkInformationVector
*);
85
86
private
:
87
vtkScaleDimension
(
const
vtkScaleDimension
&);
// Not implemented
88
void
operator=(
const
vtkScaleDimension
&);
// Not implemented
89
90
int
Dimension;
91
int
Invert;
92
//ETX
93
};
94
95
#endif
96
Generated on Wed May 30 2012 13:22:24 for VTK by
1.8.1