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.
68 lines
2.0 KiB
68 lines
2.0 KiB
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: $RCSfile: vtkDataSetSource.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 "vtkDataSetSource.h"
|
|
|
|
#include "vtkInformation.h"
|
|
#include "vtkObjectFactory.h"
|
|
#include "vtkDataSet.h"
|
|
|
|
vtkCxxRevisionMacro(vtkDataSetSource, "$Revision: 1.17 $");
|
|
|
|
vtkDataSetSource::vtkDataSetSource()
|
|
{
|
|
// A source has no inputs by default.
|
|
this->SetNumberOfInputPorts(0);
|
|
this->SetNumberOfOutputPorts(1);
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
vtkDataSet *vtkDataSetSource::GetOutput()
|
|
{
|
|
if (this->NumberOfOutputs < 1)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
return (vtkDataSet *)(this->Outputs[0]);
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
void vtkDataSetSource::SetOutput(vtkDataSet *output)
|
|
{
|
|
this->vtkSource::SetNthOutput(0, output);
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
vtkDataSet *vtkDataSetSource::GetOutput(int idx)
|
|
{
|
|
return static_cast<vtkDataSet *>( this->vtkSource::GetOutput(idx) );
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
int vtkDataSetSource::FillOutputPortInformation(int port, vtkInformation* info)
|
|
{
|
|
if(!this->Superclass::FillOutputPortInformation(port, info))
|
|
{
|
|
return 0;
|
|
}
|
|
info->Set(vtkDataObject::DATA_TYPE_NAME(), "vtkDataSet");
|
|
return 1;
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
void vtkDataSetSource::PrintSelf(ostream& os, vtkIndent indent)
|
|
{
|
|
this->Superclass::PrintSelf(os,indent);
|
|
}
|
|
|