VTK
vtkMoleculeMapper.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkMoleculeMapper.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 =========================================================================*/
27 #ifndef vtkMoleculeMapper_h
28 #define vtkMoleculeMapper_h
29 
30 #include "vtkDomainsChemistryModule.h" // For export macro
31 #include "vtkMapper.h"
32 #include "vtkNew.h" // For vtkNew
33 
34 class vtkActor;
35 class vtkGlyph3DMapper;
36 class vtkIdTypeArray;
37 class vtkMolecule;
38 class vtkPeriodicTable;
39 class vtkPolyData;
40 class vtkPolyDataMapper;
41 class vtkRenderer;
42 class vtkSelection;
43 class vtkSphereSource;
44 class vtkTrivialProducer;
45 
46 class VTKDOMAINSCHEMISTRY_EXPORT vtkMoleculeMapper : public vtkMapper
47 {
48 public:
49  static vtkMoleculeMapper *New();
51  void PrintSelf(ostream& os, vtkIndent indent);
52 
54 
57  void SetInputData(vtkMolecule *in);
60 
72  void UseBallAndStickSettings();
73 
85  void UseVDWSpheresSettings();
86 
98  void UseLiquoriceStickSettings();
99 
114  void UseFastSettings();
115 
117 
120  vtkGetMacro(RenderAtoms, bool);
121  vtkSetMacro(RenderAtoms, bool);
122  vtkBooleanMacro(RenderAtoms, bool);
124 
126 
129  vtkGetMacro(RenderBonds, bool);
130  vtkSetMacro(RenderBonds, bool);
131  vtkBooleanMacro(RenderBonds, bool);
133 
135 
139  vtkGetMacro(RenderLattice, bool)
140  vtkSetMacro(RenderLattice, bool)
141  vtkBooleanMacro(RenderLattice, bool)
143 
144  enum {
145  CovalentRadius = 0,
148  CustomArrayRadius
149  };
150 
152 
157  vtkGetMacro(AtomicRadiusType, int);
158  vtkSetMacro(AtomicRadiusType, int);
159  const char * GetAtomicRadiusTypeAsString();
161  {
162  this->SetAtomicRadiusType(CovalentRadius);
163  }
165  {
166  this->SetAtomicRadiusType(VDWRadius);
167  }
169  {
170  this->SetAtomicRadiusType(UnitRadius);
171  }
173  {
174  this->SetAtomicRadiusType(CustomArrayRadius);
175  }
177 
179 
184  vtkGetMacro(AtomicRadiusScaleFactor, float);
185  vtkSetMacro(AtomicRadiusScaleFactor, float);
187 
189 
193  vtkGetMacro(UseMultiCylindersForBonds, bool);
194  vtkSetMacro(UseMultiCylindersForBonds, bool);
195  vtkBooleanMacro(UseMultiCylindersForBonds, bool);
197 
198  enum {
199  SingleColor = 0,
200  DiscreteByAtom
201  };
202 
204 
214  vtkGetMacro(BondColorMode, int);
215  vtkSetMacro(BondColorMode, int);
216  const char * GetBondColorModeAsString();
218  {
219  this->SetBondColorMode(SingleColor);
220  }
222  {
223  this->SetBondColorMode(DiscreteByAtom);
224  }
226 
228 
232  vtkGetVector3Macro(BondColor, unsigned char);
233  vtkSetVector3Macro(BondColor, unsigned char);
235 
237 
240  vtkGetMacro(BondRadius, float);
241  vtkSetMacro(BondRadius, float);
243 
245 
249  vtkGetVector3Macro(LatticeColor, unsigned char)
250  vtkSetVector3Macro(LatticeColor, unsigned char)
252 
254 
258  virtual void GetSelectedAtomsAndBonds(vtkSelection *selection,
259  vtkIdTypeArray *atomIds,
260  vtkIdTypeArray *bondIds);
261  virtual void GetSelectedAtoms(vtkSelection *selection,
262  vtkIdTypeArray *atomIds)
263  {
264  this->GetSelectedAtomsAndBonds(selection, atomIds, NULL);
265  }
266  virtual void GetSelectedBonds(vtkSelection *selection,
267  vtkIdTypeArray *bondIds)
268  {
269  this->GetSelectedAtomsAndBonds(selection, NULL, bondIds);
270  }
272 
274 
277  virtual void Render(vtkRenderer *, vtkActor *);
278  virtual void ReleaseGraphicsResources(vtkWindow *);
279  double * GetBounds();
280  void GetBounds(double bounds[6]) { vtkAbstractMapper3D::GetBounds(bounds); }
282  virtual bool GetSupportsSelection() {return true;}
284 
285 protected:
288 
290 
297 
299 
305  float BondRadius;
306  unsigned char BondColor[3];
308 
310 
314  void GlyphRender(vtkRenderer *ren, vtkActor *act);
315 
317 
325  virtual void UpdateGlyphPolyData();
326  virtual void UpdateAtomGlyphPolyData();
327  virtual void UpdateBondGlyphPolyData();
329 
331 
337 
338  unsigned char LatticeColor[3];
341  virtual void UpdateLatticePolyData();
342 
347 
348 private:
349  vtkMoleculeMapper(const vtkMoleculeMapper&) VTK_DELETE_FUNCTION;
350  void operator=(const vtkMoleculeMapper&) VTK_DELETE_FUNCTION;
351 };
352 
353 #endif
Access to information about the elements.
represents an object (geometry & properties) in a rendered scene
Definition: vtkActor.h:51
vtkNew< vtkGlyph3DMapper > BondGlyphMapper
Internal mappers.
bool RenderBonds
Customize bond rendering.
vtkNew< vtkPeriodicTable > PeriodicTable
Periodic table for lookups.
virtual void ReleaseGraphicsResources(vtkWindow *)
Release any graphics resources that are being consumed by this mapper.
Definition: vtkMapper.h:119
Store vtkAlgorithm input/output information.
class describing a molecule
Definition: vtkMolecule.h:90
float AtomicRadiusScaleFactor
Customize atom rendering.
bool GlyphDataInitialized
Cached variables and update methods.
void SetAtomicRadiusTypeToCovalentRadius()
Get/Set the type of radius used to generate the atoms.
bool UseMultiCylindersForBonds
Customize bond rendering.
virtual void GetSelectedBonds(vtkSelection *selection, vtkIdTypeArray *bondIds)
Extract the ids atoms and/or bonds rendered by this molecule from a vtkSelection object.
virtual bool GetSupportsSelection()
Reimplemented from base class.
vtkNew< vtkPolyData > LatticePolyData
abstract specification for renderers
Definition: vtkRenderer.h:63
vtkNew< vtkPolyData > AtomGlyphPolyData
Cached variables and update methods.
A node in a selection tree.
Definition: vtkSelection.h:43
dynamic, self-adjusting array of vtkIdType
bool RenderAtoms
Customize atom rendering.
vtkGlyph3D on the GPU.
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:85
void SetAtomicRadiusTypeToVDWRadius()
Get/Set the type of radius used to generate the atoms.
void SetAtomicRadiusTypeToCustomArrayRadius()
Get/Set the type of radius used to generate the atoms.
Mapper that draws vtkMolecule objects.
void GetBounds(double bounds[6])
Reimplemented from base class.
int AtomicRadiusType
Customize atom rendering.
window superclass for vtkRenderWindow
Definition: vtkWindow.h:37
create a polygonal sphere centered at the origin
vtkNew< vtkPolyData > BondGlyphPolyData
Cached variables and update methods.
Producer for stand-alone data objects.
vtkNew< vtkPolyDataMapper > LatticeMapper
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkNew< vtkTrivialProducer > AtomGlyphPointOutput
Cached variables and update methods.
vtkNew< vtkGlyph3DMapper > AtomGlyphMapper
Internal mappers.
void SetAtomicRadiusTypeToUnitRadius()
Get/Set the type of radius used to generate the atoms.
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
virtual double * GetBounds()=0
Return bounding box (array of six doubles) of data expressed as (xmin,xmax, ymin,ymax, zmin,zmax).
virtual int FillInputPortInformation(int port, vtkInformation *info)
Fill the input port information objects for this algorithm.
vtkNew< vtkTrivialProducer > BondGlyphPointOutput
Cached variables and update methods.
abstract class specifies interface to map data to graphics primitives
Definition: vtkMapper.h:91
vtkSetMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
map vtkPolyData to graphics primitives
void SetBondColorModeToDiscreteByAtom()
Get/Set the method by which bonds are colored.
float BondRadius
Customize bond rendering.
virtual void GetSelectedAtoms(vtkSelection *selection, vtkIdTypeArray *atomIds)
Extract the ids atoms and/or bonds rendered by this molecule from a vtkSelection object.
virtual double * GetBounds()
Return bounding box (array of six doubles) of data expressed as (xmin,xmax, ymin,ymax, zmin,zmax).
static vtkAlgorithm * New()
int BondColorMode
Customize bond rendering.
vtkBooleanMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
vtkDataSet * GetInput()
Get the input as a vtkDataSet.
virtual void Render(vtkRenderer *ren, vtkActor *a)=0
Method initiates the mapping process.
void SetBondColorModeToSingleColor()
Get/Set the method by which bonds are colored.