VTK
dox
opt
build
vtk6-6.3.0+dfsg2
Imaging
Core
vtkImagePermute.h
Go to the documentation of this file.
1
/*=========================================================================
2
3
Program: Visualization Toolkit
4
Module: vtkImagePermute.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
=========================================================================*/
28
#ifndef vtkImagePermute_h
29
#define vtkImagePermute_h
30
31
32
#include "
vtkImagingCoreModule.h
"
// For export macro
33
#include "
vtkImageReslice.h
"
34
35
class
VTKIMAGINGCORE_EXPORT
vtkImagePermute
:
public
vtkImageReslice
36
{
37
public
:
38
static
vtkImagePermute
*
New
();
39
vtkTypeMacro
(
vtkImagePermute
,
vtkImageReslice
);
40
41
void
PrintSelf
(ostream& os,
vtkIndent
indent);
42
44
45
void
SetFilteredAxes
(
int
x
,
int
y
,
int
z
);
46
void
SetFilteredAxes
(
const
int
xyz[3]) {
47
this->SetFilteredAxes(xyz[0], xyz[1], xyz[2]); };
48
vtkGetVector3Macro
(FilteredAxes,
int
);
50
51
protected
:
52
vtkImagePermute
();
53
~vtkImagePermute
() {}
54
55
int
FilteredAxes[3];
56
57
private
:
58
vtkImagePermute
(
const
vtkImagePermute
&);
// Not implemented.
59
void
operator=(
const
vtkImagePermute
&);
// Not implemented.
60
};
61
62
#endif
63
64
65
vtkgl::z
GLdouble GLdouble z
Definition:
vtkgl.h:11754
vtkImageReslice.h
vtkImagePermute::SetFilteredAxes
void SetFilteredAxes(int x, int y, int z)
vtkTypeMacro
#define vtkTypeMacro(thisClass, superclass)
Definition:
vtkSetGet.h:642
vtkImagePermute::~vtkImagePermute
~vtkImagePermute()
Definition:
vtkImagePermute.h:53
vtkImagePermute::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
vtkgl::x
GLint GLint GLint GLint GLint x
Definition:
vtkgl.h:11318
vtkGetVector3Macro
#define vtkGetVector3Macro(name, type)
Definition:
vtkSetGet.h:304
vtkIndent
a simple class to control print indentation
Definition:
vtkIndent.h:39
vtkImagePermute::SetFilteredAxes
void SetFilteredAxes(const int xyz[3])
Definition:
vtkImagePermute.h:46
vtkImageReslice
Reslices a volume along a new set of axes.
Definition:
vtkImageReslice.h:77
vtkImagePermute
Permutes axes of input.
Definition:
vtkImagePermute.h:36
vtkgl::y
GLint GLint GLint GLint GLint GLint y
Definition:
vtkgl.h:11318
vtkImagePermute::New
static vtkImagePermute * New()
vtkImagingCoreModule.h
VTKIMAGINGCORE_EXPORT
#define VTKIMAGINGCORE_EXPORT
Definition:
vtkImagingCoreModule.h:15
vtkImagePermute::vtkImagePermute
vtkImagePermute()
Generated by
1.8.20