You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.4 KiB
48 lines
1.4 KiB
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: $RCSfile: vtkImagePermute.cxx,v $
|
|
|
|
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
|
All rights reserved.
|
|
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
PURPOSE. See the above copyright notice for more information.
|
|
|
|
=========================================================================*/
|
|
#include "vtkImagePermute.h"
|
|
#include "vtkObjectFactory.h"
|
|
|
|
vtkCxxRevisionMacro(vtkImagePermute, "$Revision: 1.32 $");
|
|
vtkStandardNewMacro(vtkImagePermute);
|
|
|
|
vtkImagePermute::vtkImagePermute()
|
|
{
|
|
this->FilteredAxes[0] = 0;
|
|
this->FilteredAxes[1] = 1;
|
|
this->FilteredAxes[2] = 2;
|
|
}
|
|
|
|
void vtkImagePermute::SetFilteredAxes(int newx, int newy, int newz)
|
|
{
|
|
static double axes[3][3] = { {1, 0, 0}, {0, 1, 0}, {0, 0, 1} };
|
|
|
|
this->SetResliceAxesDirectionCosines(axes[newx], axes[newy], axes[newz]);
|
|
|
|
this->FilteredAxes[0] = newx;
|
|
this->FilteredAxes[1] = newy;
|
|
this->FilteredAxes[2] = newz;
|
|
}
|
|
|
|
void vtkImagePermute::PrintSelf(ostream& os, vtkIndent indent)
|
|
{
|
|
this->Superclass::PrintSelf(os,indent);
|
|
|
|
os << indent << "FilteredAxes: ( "
|
|
<< this->FilteredAxes[0] << ", "
|
|
<< this->FilteredAxes[1] << ", "
|
|
<< this->FilteredAxes[2] << " )\n";
|
|
}
|
|
|
|
|