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.
160 lines
4.5 KiB
160 lines
4.5 KiB
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: $RCSfile: vtkWarpVector.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 "vtkWarpVector.h"
|
|
|
|
#include "vtkCellData.h"
|
|
#include "vtkInformation.h"
|
|
#include "vtkInformationVector.h"
|
|
#include "vtkObjectFactory.h"
|
|
#include "vtkPointData.h"
|
|
#include "vtkPointSet.h"
|
|
#include "vtkPoints.h"
|
|
|
|
vtkCxxRevisionMacro(vtkWarpVector, "$Revision: 1.47 $");
|
|
vtkStandardNewMacro(vtkWarpVector);
|
|
|
|
vtkWarpVector::vtkWarpVector()
|
|
{
|
|
this->ScaleFactor = 1.0;
|
|
|
|
// by default process active point vectors
|
|
this->SetInputArrayToProcess(0,0,0,vtkDataObject::FIELD_ASSOCIATION_POINTS,
|
|
vtkDataSetAttributes::VECTORS);
|
|
}
|
|
|
|
vtkWarpVector::~vtkWarpVector()
|
|
{
|
|
}
|
|
|
|
template <class T1, class T2>
|
|
void vtkWarpVectorExecute2(vtkWarpVector *self, T1 *inPts,
|
|
T1 *outPts, T2 *inVec, vtkIdType max)
|
|
{
|
|
vtkIdType ptId;
|
|
T1 scaleFactor = (T1)self->GetScaleFactor();
|
|
|
|
// Loop over all points, adjusting locations
|
|
for (ptId=0; ptId < max; ptId++)
|
|
{
|
|
if (!(ptId & 0xfff))
|
|
{
|
|
self->UpdateProgress ((double)ptId/(max+1));
|
|
if (self->GetAbortExecute())
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
|
|
*outPts = *inPts + scaleFactor * (T1)(*inVec);
|
|
outPts++; inPts++; inVec++;
|
|
*outPts = *inPts + scaleFactor * (T1)(*inVec);
|
|
outPts++; inPts++; inVec++;
|
|
*outPts = *inPts + scaleFactor * (T1)(*inVec);
|
|
outPts++; inPts++; inVec++;
|
|
}
|
|
}
|
|
|
|
template <class T>
|
|
void vtkWarpVectorExecute(vtkWarpVector *self,
|
|
T *inPts,
|
|
T *outPts,
|
|
vtkIdType max,
|
|
vtkDataArray *vectors)
|
|
{
|
|
void *inVec;
|
|
inVec = vectors->GetVoidPointer(0);
|
|
|
|
// call templated function
|
|
switch (vectors->GetDataType())
|
|
{
|
|
vtkTemplateMacro(
|
|
vtkWarpVectorExecute2(self, inPts, outPts,
|
|
(VTK_TT *)(inVec), max));
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
int vtkWarpVector::RequestData(
|
|
vtkInformation *vtkNotUsed(request),
|
|
vtkInformationVector **inputVector,
|
|
vtkInformationVector *outputVector)
|
|
{
|
|
// get the info objects
|
|
vtkInformation *inInfo = inputVector[0]->GetInformationObject(0);
|
|
vtkInformation *outInfo = outputVector->GetInformationObject(0);
|
|
|
|
// get the input and ouptut
|
|
vtkPointSet *input = vtkPointSet::SafeDownCast(
|
|
inInfo->Get(vtkDataObject::DATA_OBJECT()));
|
|
vtkPointSet *output = vtkPointSet::SafeDownCast(
|
|
outInfo->Get(vtkDataObject::DATA_OBJECT()));
|
|
|
|
vtkPoints *points;
|
|
vtkIdType numPts;
|
|
|
|
// First, copy the input to the output as a starting point
|
|
output->CopyStructure( input );
|
|
|
|
if (input == NULL || input->GetPoints() == NULL)
|
|
{
|
|
return 1;
|
|
}
|
|
numPts = input->GetPoints()->GetNumberOfPoints();
|
|
|
|
vtkDataArray *vectors = this->GetInputArrayToProcess(0,inputVector);
|
|
|
|
if ( !vectors || !numPts)
|
|
{
|
|
vtkDebugMacro(<<"No input data");
|
|
return 1;
|
|
}
|
|
|
|
// SETUP AND ALLOCATE THE OUTPUT
|
|
numPts = input->GetNumberOfPoints();
|
|
points = input->GetPoints()->NewInstance();
|
|
points->SetDataType(input->GetPoints()->GetDataType());
|
|
points->Allocate(numPts);
|
|
points->SetNumberOfPoints(numPts);
|
|
output->SetPoints(points);
|
|
points->Delete();
|
|
|
|
void *inPtr = input->GetPoints()->GetVoidPointer(0);
|
|
void *outPtr = output->GetPoints()->GetVoidPointer(0);
|
|
|
|
// call templated function
|
|
switch (input->GetPoints()->GetDataType())
|
|
{
|
|
vtkTemplateMacro(
|
|
vtkWarpVectorExecute( this, (VTK_TT *)(inPtr),
|
|
(VTK_TT *)(outPtr), numPts, vectors) );
|
|
default:
|
|
break;
|
|
}
|
|
|
|
// now pass the data.
|
|
output->GetPointData()->CopyNormalsOff(); // distorted geometry
|
|
output->GetPointData()->PassData(input->GetPointData());
|
|
output->GetCellData()->PassData(input->GetCellData());
|
|
|
|
return 1;
|
|
}
|
|
|
|
void vtkWarpVector::PrintSelf(ostream& os, vtkIndent indent)
|
|
{
|
|
this->Superclass::PrintSelf(os,indent);
|
|
os << indent << "Scale Factor: " << this->ScaleFactor << "\n";
|
|
}
|
|
|