VTK  9.2.6
vtkAssemblyPath.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkAssemblyPath.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
42#ifndef vtkAssemblyPath_h
43#define vtkAssemblyPath_h
44
45#include "vtkAssemblyNode.h" // used for inlines
46#include "vtkCollection.h"
47#include "vtkRenderingCoreModule.h" // For export macro
48
49class vtkMatrix4x4;
50class vtkTransform;
51class vtkProp;
52
53class VTKRENDERINGCORE_EXPORT vtkAssemblyPath : public vtkCollection
54{
55public:
57 void PrintSelf(ostream& os, vtkIndent indent) override;
58
63
71
81
88
94
100
106
112
118 {
119 return static_cast<vtkAssemblyNode*>(this->GetNextItemAsObject(cookie));
120 }
121
122protected:
125
126 void AddNode(vtkAssemblyNode* n); // Internal method adds assembly node
127 vtkTransform* Transform; // Used to perform matrix concatenation
128 vtkProp* TransformedProp; // A transformed prop used to do the rendering
129
130private:
131 // hide the standard AddItem from the user and the compiler.
132 void AddItem(vtkObject* o) { this->vtkCollection::AddItem(o); }
133
134private:
135 vtkAssemblyPath(const vtkAssemblyPath&) = delete;
136 void operator=(const vtkAssemblyPath&) = delete;
137};
138
139#endif
represent a node in an assembly
a list of nodes that form an assembly path
vtkProp * TransformedProp
void AddNode(vtkAssemblyNode *n)
static vtkAssemblyPath * New()
Instantiate empty path with identify matrix.
void AddNode(vtkProp *p, vtkMatrix4x4 *m)
Convenience method adds a prop and matrix together, creating an assembly node transparently.
void ShallowCopy(vtkAssemblyPath *path)
Perform a shallow copy (reference counted) on the incoming path.
vtkMTimeType GetMTime() override
Override the standard GetMTime() to check for the modified times of the nodes in this path.
vtkAssemblyNode * GetNextNode()
Get the next assembly node in the list.
vtkAssemblyNode * GetFirstNode()
Get the first assembly node in the list.
~vtkAssemblyPath() override
vtkAssemblyNode * GetLastNode()
Get the last assembly node in the list.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkTransform * Transform
void DeleteLastNode()
Delete the last assembly node in the list.
vtkAssemblyNode * GetNextNode(vtkCollectionSimpleIterator &cookie)
Reentrant safe way to get an object in a collection.
create and manipulate ordered lists of objects
void AddItem(vtkObject *)
Add an object to the bottom of the list.
vtkObject * GetNextItemAsObject()
Get the next item in the collection.
a simple class to control print indentation
Definition vtkIndent.h:49
represent and manipulate 4x4 transformation matrices
abstract base class for most VTK objects
Definition vtkObject.h:72
abstract superclass for all actors, volumes and annotations
Definition vtkProp.h:66
describes linear transformations via a 4x4 matrix
void * vtkCollectionSimpleIterator
vtkTypeUInt32 vtkMTimeType
Definition vtkType.h:287