Cloned library of VTK-5.0.0 with extra build files for internal package management.
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.
 
 
 
 
 
 

191 lines
4.2 KiB

/*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile: vtkAbstractPropPicker.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 "vtkAbstractPropPicker.h"
#include "vtkActor.h"
#include "vtkActor2D.h"
#include "vtkAssembly.h"
#include "vtkAssemblyNode.h"
#include "vtkAssemblyPath.h"
#include "vtkObjectFactory.h"
#include "vtkPropAssembly.h"
#include "vtkVolume.h"
vtkCxxRevisionMacro(vtkAbstractPropPicker, "$Revision: 1.10.12.1 $");
vtkCxxSetObjectMacro(vtkAbstractPropPicker,Path,vtkAssemblyPath);
vtkAbstractPropPicker::vtkAbstractPropPicker()
{
this->Path = NULL;
}
vtkAbstractPropPicker::~vtkAbstractPropPicker()
{
if ( this->Path )
{
this->Path->Delete();
}
}
// set up for a pick
void vtkAbstractPropPicker::Initialize()
{
this->vtkAbstractPicker::Initialize();
if ( this->Path )
{
this->Path->Delete();
this->Path = NULL;
}
}
//----------------------------------------------------------------------------
vtkProp* vtkAbstractPropPicker::GetViewProp()
{
if ( this->Path != NULL )
{
return this->Path->GetFirstNode()->GetViewProp();
}
else
{
return NULL;
}
}
vtkProp3D *vtkAbstractPropPicker::GetProp3D()
{
if ( this->Path != NULL )
{
vtkProp *prop = this->Path->GetFirstNode()->GetViewProp();
return vtkProp3D::SafeDownCast(prop);
}
else
{
return NULL;
}
}
vtkActor *vtkAbstractPropPicker::GetActor()
{
if ( this->Path != NULL )
{
vtkProp *prop = this->Path->GetFirstNode()->GetViewProp();
return vtkActor::SafeDownCast(prop);
}
else
{
return NULL;
}
}
vtkActor2D *vtkAbstractPropPicker::GetActor2D()
{
if ( this->Path != NULL )
{
vtkProp *prop = this->Path->GetFirstNode()->GetViewProp();
return vtkActor2D::SafeDownCast(prop);
}
else
{
return NULL;
}
}
vtkVolume *vtkAbstractPropPicker::GetVolume()
{
if ( this->Path != NULL )
{
vtkProp *prop = this->Path->GetFirstNode()->GetViewProp();
return vtkVolume::SafeDownCast(prop);
}
else
{
return NULL;
}
}
vtkAssembly *vtkAbstractPropPicker::GetAssembly()
{
if ( this->Path != NULL )
{
vtkProp *prop = this->Path->GetFirstNode()->GetViewProp();
return vtkAssembly::SafeDownCast(prop);
}
else
{
return NULL;
}
}
vtkPropAssembly *vtkAbstractPropPicker::GetPropAssembly()
{
if ( this->Path != NULL )
{
vtkProp *prop = this->Path->GetFirstNode()->GetViewProp();
return vtkPropAssembly::SafeDownCast(prop);
}
else
{
return NULL;
}
}
void vtkAbstractPropPicker::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
if ( this->Path )
{
os << indent << "Path: " << this->Path << endl;
}
else
{
os << indent << "Path: (none)" << endl;
}
}
//----------------------------------------------------------------------------
// Disable warnings about qualifiers on return types.
#if defined(_COMPILER_VERSION)
# pragma set woff 3303
#endif
#if defined(__INTEL_COMPILER)
# pragma warning (disable:858)
#endif
#ifndef VTK_LEGACY_REMOVE
# ifdef VTK_WORKAROUND_WINDOWS_MANGLE
# undef GetProp
vtkProp* const vtkAbstractPropPicker::GetPropA()
{
VTK_LEGACY_REPLACED_BODY(vtkAbstractPropPicker::GetProp, "VTK 5.0",
vtkAbstractPropPicker::GetViewProp);
return this->GetViewProp();
}
vtkProp* const vtkAbstractPropPicker::GetPropW()
{
VTK_LEGACY_REPLACED_BODY(vtkAbstractPropPicker::GetProp, "VTK 5.0",
vtkAbstractPropPicker::GetViewProp);
return this->GetViewProp();
}
# endif
vtkProp* const vtkAbstractPropPicker::GetProp()
{
VTK_LEGACY_REPLACED_BODY(vtkAbstractPropPicker::GetProp, "VTK 5.0",
vtkAbstractPropPicker::GetViewProp);
return this->GetViewProp();
}
#endif