VTK  9.1.0
vtkDepthSortPolyData.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkDepthSortPolyData.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=========================================================================*/
40#ifndef vtkDepthSortPolyData_h
41#define vtkDepthSortPolyData_h
42
43#include "vtkFiltersHybridModule.h" // For export macro
45
46class vtkCamera;
47class vtkProp3D;
48class vtkTransform;
49
50class VTKFILTERSHYBRID_EXPORT vtkDepthSortPolyData : public vtkPolyDataAlgorithm
51{
52public:
57
59 void PrintSelf(ostream& os, vtkIndent indent) override;
60
62 {
63 VTK_DIRECTION_BACK_TO_FRONT = 0,
64 VTK_DIRECTION_FRONT_TO_BACK = 1,
65 VTK_DIRECTION_SPECIFIED_VECTOR = 2
66 };
67
69
73 vtkSetMacro(Direction, int);
74 vtkGetMacro(Direction, int);
75 void SetDirectionToFrontToBack() { this->SetDirection(VTK_DIRECTION_FRONT_TO_BACK); }
76 void SetDirectionToBackToFront() { this->SetDirection(VTK_DIRECTION_BACK_TO_FRONT); }
77 void SetDirectionToSpecifiedVector() { this->SetDirection(VTK_DIRECTION_SPECIFIED_VECTOR); }
79
81 {
82 VTK_SORT_FIRST_POINT = 0,
83 VTK_SORT_BOUNDS_CENTER = 1,
84 VTK_SORT_PARAMETRIC_CENTER = 2
85 };
86
88
94 vtkSetMacro(DepthSortMode, int);
95 vtkGetMacro(DepthSortMode, int);
96 void SetDepthSortModeToFirstPoint() { this->SetDepthSortMode(VTK_SORT_FIRST_POINT); }
97 void SetDepthSortModeToBoundsCenter() { this->SetDepthSortMode(VTK_SORT_BOUNDS_CENTER); }
98 void SetDepthSortModeToParametricCenter() { this->SetDepthSortMode(VTK_SORT_PARAMETRIC_CENTER); }
100
102
107 virtual void SetCamera(vtkCamera*);
108 vtkGetObjectMacro(Camera, vtkCamera);
110
118 vtkProp3D* GetProp3D() { return this->Prop3D; }
119
121
126 vtkSetVector3Macro(Vector, double);
127 vtkGetVectorMacro(Vector, double, 3);
129
131
137 vtkSetVector3Macro(Origin, double);
138 vtkGetVectorMacro(Origin, double, 3);
140
142
148 vtkSetMacro(SortScalars, vtkTypeBool);
149 vtkGetMacro(SortScalars, vtkTypeBool);
150 vtkBooleanMacro(SortScalars, vtkTypeBool);
152
158
159protected:
162
164 void ComputeProjectionVector(double direction[3], double origin[3]);
165
171 double Vector[3];
172 double Origin[3];
174
175private:
177 void operator=(const vtkDepthSortPolyData&) = delete;
178};
179
180#endif
a virtual camera for 3D rendering
Definition: vtkCamera.h:55
sort poly data along camera view direction
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
void SetDirectionToBackToFront()
Specify the sort method for the polygonal primitives.
virtual void SetCamera(vtkCamera *)
Specify a camera that is used to define a view direction along which the cells are sorted.
void SetDirectionToFrontToBack()
Specify the sort method for the polygonal primitives.
void SetDepthSortModeToParametricCenter()
Specify the point to use when sorting.
vtkMTimeType GetMTime() override
Return MTime also considering the dependent objects: the camera and/or the prop3D.
void SetDepthSortModeToBoundsCenter()
Specify the point to use when sorting.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void SetDepthSortModeToFirstPoint()
Specify the point to use when sorting.
~vtkDepthSortPolyData() override
void ComputeProjectionVector(double direction[3], double origin[3])
void SetDirectionToSpecifiedVector()
Specify the sort method for the polygonal primitives.
void SetProp3D(vtkProp3D *)
Specify a transformation matrix (via the vtkProp3D::GetMatrix() method) that is used to include the e...
static vtkDepthSortPolyData * New()
Instantiate object.
a simple class to control print indentation
Definition: vtkIndent.h:43
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only polydata as output.
represents an 3D object for placement in a rendered scene
Definition: vtkProp3D.h:53
describes linear transformations via a 4x4 matrix
Definition: vtkTransform.h:64
@ direction
Definition: vtkX3D.h:266
int vtkTypeBool
Definition: vtkABI.h:69
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:287