VTK  9.2.6
vtkProteinRibbonFilter.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkProteinRibbonFilter.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=========================================================================*/
15
16#ifndef vtkProteinRibbonFilter_h
17#define vtkProteinRibbonFilter_h
18
39#include "vtkDomainsChemistryModule.h" // for export macro
41
42#include "vtkColor.h" // For vtkColor3ub.
43#include <map> // For element to color map.
44
45class vtkVector3f;
46class vtkStringArray;
47
48class VTKDOMAINSCHEMISTRY_EXPORT vtkProteinRibbonFilter : public vtkPolyDataAlgorithm
49{
50public:
52 void PrintSelf(ostream& os, vtkIndent indent) override;
53
55
57
60 vtkGetMacro(CoilWidth, float);
61 vtkSetMacro(CoilWidth, float);
63
65
68 vtkGetMacro(HelixWidth, float);
69 vtkSetMacro(HelixWidth, float);
71
73
76 vtkGetMacro(SubdivideFactor, int);
77 vtkSetMacro(SubdivideFactor, int);
79
81
84 vtkGetMacro(DrawSmallMoleculesAsSpheres, bool);
85 vtkSetMacro(DrawSmallMoleculesAsSpheres, bool);
87
89
92 vtkGetMacro(SphereResolution, int);
93 vtkSetMacro(SphereResolution, int);
95
96protected:
99
101
103
105 std::vector<std::pair<vtkVector3f, bool>>& p1, std::vector<std::pair<vtkVector3f, bool>>& p2,
106 std::vector<vtkColor3ub>& colors);
107
108 void CreateAtomAsSphere(vtkPolyData* poly, vtkUnsignedCharArray* pointsColors, double* pos,
109 const vtkColor3ub& color, float radius, float scale);
110
111 static std::vector<vtkVector3f>* Subdivide(std::vector<std::pair<vtkVector3f, bool>>& p, int div);
112
113 void SetColorByAtom(std::vector<vtkColor3ub>& colors, vtkStringArray* atomTypes);
114
115 void SetColorByStructure(std::vector<vtkColor3ub>& colors, vtkStringArray* atomTypes,
116 vtkUnsignedCharArray* ss, const vtkColor3ub& helixColor, const vtkColor3ub& sheetColor);
117
118 std::map<std::string, vtkColor3ub> ElementColors;
119
125
126private:
128 void operator=(const vtkProteinRibbonFilter&) = delete;
129};
130
131#endif // vtkProteinRibbonFilter_h
Some derived classes for the different colors commonly used.
Definition vtkColor.h:204
a simple class to control print indentation
Definition vtkIndent.h:49
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
represent and manipulate 3D points
Definition vtkPoints.h:49
Superclass for algorithms that produce only polydata as output.
concrete dataset represents vertices, lines, polygons, and triangle strips
generates protein ribbons
~vtkProteinRibbonFilter() override
void SetColorByStructure(std::vector< vtkColor3ub > &colors, vtkStringArray *atomTypes, vtkUnsignedCharArray *ss, const vtkColor3ub &helixColor, const vtkColor3ub &sheetColor)
void SetColorByAtom(std::vector< vtkColor3ub > &colors, vtkStringArray *atomTypes)
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static std::vector< vtkVector3f > * Subdivide(std::vector< std::pair< vtkVector3f, bool > > &p, int div)
void CreateThinStrip(vtkPolyData *poly, vtkUnsignedCharArray *pointsColors, vtkPoints *p, std::vector< std::pair< vtkVector3f, bool > > &p1, std::vector< std::pair< vtkVector3f, bool > > &p2, std::vector< vtkColor3ub > &colors)
std::map< std::string, vtkColor3ub > ElementColors
int FillInputPortInformation(int, vtkInformation *) override
Fill the input port information objects for this algorithm.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
static vtkProteinRibbonFilter * New()
void CreateAtomAsSphere(vtkPolyData *poly, vtkUnsignedCharArray *pointsColors, double *pos, const vtkColor3ub &color, float radius, float scale)
a vtkAbstractArray subclass for strings
dynamic, self-adjusting array of unsigned char