#include "vtkModeloDeformableCollection.h" #include "vtkObjectFactory.h" #include "vtkModeloDeformable.h" #include vtkCxxRevisionMacro(vtkModeloDeformableCollection, "$Revision: 0.1 $"); vtkStandardNewMacro(vtkModeloDeformableCollection); void vtkModeloDeformableCollection::InsertarOrgano(vtkModeloDeformable *a) { this->vtkCollection::AddItem((vtkObject *) a); } vtkModeloDeformable* vtkModeloDeformableCollection::GetModelOnPosition(int i) { return static_cast (this->GetItemAsObject(i)); } //---------------------------------------------------------------------------- void vtkModeloDeformableCollection::PrintSelf(ostream& os, vtkIndent indent) { this->Superclass::PrintSelf(os,indent); }