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.
86 lines
2.5 KiB
86 lines
2.5 KiB
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: $RCSfile: vtkDataSetToPolyDataFilter.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 "vtkDataSetToPolyDataFilter.h"
|
|
|
|
#include "vtkDataSet.h"
|
|
#include "vtkInformation.h"
|
|
|
|
vtkCxxRevisionMacro(vtkDataSetToPolyDataFilter, "$Revision: 1.18 $");
|
|
|
|
//----------------------------------------------------------------------------
|
|
vtkDataSetToPolyDataFilter::vtkDataSetToPolyDataFilter()
|
|
{
|
|
this->NumberOfRequiredInputs = 1;
|
|
this->SetNumberOfInputPorts(1);
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
vtkDataSetToPolyDataFilter::~vtkDataSetToPolyDataFilter()
|
|
{
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
// Specify the input data or filter.
|
|
void vtkDataSetToPolyDataFilter::SetInput(vtkDataSet *input)
|
|
{
|
|
this->vtkProcessObject::SetNthInput(0, input);
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
// Specify the input data or filter.
|
|
vtkDataSet *vtkDataSetToPolyDataFilter::GetInput()
|
|
{
|
|
if (this->NumberOfInputs < 1)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
return (vtkDataSet *)(this->Inputs[0]);
|
|
}
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
// Copy the update information across
|
|
void vtkDataSetToPolyDataFilter::ComputeInputUpdateExtents(vtkDataObject *output)
|
|
{
|
|
vtkDataObject *input = this->GetInput();
|
|
|
|
if (input == NULL)
|
|
{
|
|
return;
|
|
}
|
|
|
|
this->vtkPolyDataSource::ComputeInputUpdateExtents(output);
|
|
input->RequestExactExtentOn();
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
int
|
|
vtkDataSetToPolyDataFilter
|
|
::FillInputPortInformation(int port, vtkInformation* info)
|
|
{
|
|
if(!this->Superclass::FillInputPortInformation(port, info))
|
|
{
|
|
return 0;
|
|
}
|
|
info->Set(vtkAlgorithm::INPUT_REQUIRED_DATA_TYPE(), "vtkDataSet");
|
|
return 1;
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
void vtkDataSetToPolyDataFilter::PrintSelf(ostream& os, vtkIndent indent)
|
|
{
|
|
this->Superclass::PrintSelf(os,indent);
|
|
}
|
|
|