// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen // SPDX-License-Identifier: BSD-3-Clause #include "vtkActorNode.h" #include "vtkActor.h" #include "vtkCellArray.h" #include "vtkMapper.h" #include "vtkMath.h" #include "vtkMatrix4x4.h" #include "vtkObjectFactory.h" #include "vtkPoints.h" #include "vtkPolyData.h" #include "vtkPolygon.h" #include "vtkProperty.h" //============================================================================ VTK_ABI_NAMESPACE_BEGIN vtkStandardNewMacro(vtkActorNode); //------------------------------------------------------------------------------ vtkActorNode::vtkActorNode() = default; //------------------------------------------------------------------------------ vtkActorNode::~vtkActorNode() = default; //------------------------------------------------------------------------------ void vtkActorNode::Build(bool prepass) { if (prepass) { vtkActor* mine = vtkActor::SafeDownCast(this->GetRenderable()); if (!mine) { return; } if (!mine->GetMapper()) { return; } this->PrepareNodes(); this->AddMissingNode(mine->GetMapper()); this->RemoveUnusedNodes(); } } //------------------------------------------------------------------------------ void vtkActorNode::PrintSelf(ostream& os, vtkIndent indent) { this->Superclass::PrintSelf(os, indent); } VTK_ABI_NAMESPACE_END