/usr/include/vtk-6.3/vtkSelectionSource.h is in libvtk6-dev 6.3.0+dfsg1-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkSelectionSource.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME vtkSelectionSource - Generate selection from given set of ids
// vtkSelectionSource generates a vtkSelection from a set of
// (piece id, cell id) pairs. It will only generate the selection values
// that match UPDATE_PIECE_NUMBER (i.e. piece == UPDATE_PIECE_NUMBER).
#ifndef vtkSelectionSource_h
#define vtkSelectionSource_h
#include "vtkFiltersSourcesModule.h" // For export macro
#include "vtkSelectionAlgorithm.h"
//BTX
class vtkSelectionSourceInternals;
//ETX
class VTKFILTERSSOURCES_EXPORT vtkSelectionSource : public vtkSelectionAlgorithm
{
public:
static vtkSelectionSource *New();
vtkTypeMacro(vtkSelectionSource,vtkSelectionAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Add a (piece, id) to the selection set. The source will generate
// only the ids for which piece == UPDATE_PIECE_NUMBER.
// If piece == -1, the id applies to all pieces.
void AddID(vtkIdType piece, vtkIdType id);
void AddStringID(vtkIdType piece, const char* id);
// Description:
// Add a point in world space to probe at.
void AddLocation(double x, double y, double z);
// Description:
// Add a value range to threshold within.
void AddThreshold(double min, double max);
// Description:
// Set a frustum to choose within.
void SetFrustum(double *vertices);
// Description:
// Add the flat-index/composite index for a block.
void AddBlock(vtkIdType blockno);
// Description:
// Removes all IDs.
void RemoveAllIDs();
void RemoveAllStringIDs();
// Description:
// Remove all thresholds added with AddThreshold.
void RemoveAllThresholds();
// Description:
// Remove all locations added with AddLocation.
void RemoveAllLocations();
// Description:
// Remove all blocks added with AddBlock.
void RemoveAllBlocks();
// Description:
// Set the content type for the generated selection.
// Possible values are as defined by
// vtkSelection::SelectionContent.
vtkSetMacro(ContentType, int);
vtkGetMacro(ContentType, int);
// Description:
// Set the field type for the generated selection.
// Possible values are as defined by
// vtkSelection::SelectionField.
vtkSetMacro(FieldType, int);
vtkGetMacro(FieldType, int);
// Description:
// When extracting by points, extract the cells that contain the
// passing points.
vtkSetMacro(ContainingCells, int);
vtkGetMacro(ContainingCells, int);
// Description:
// Determines whether the selection describes what to include or exclude.
// Default is 0, meaning include.
vtkSetMacro(Inverse, int);
vtkGetMacro(Inverse, int);
// Description:
// Access to the name of the selection's subset description array.
vtkSetStringMacro(ArrayName);
vtkGetStringMacro(ArrayName);
// Description:
// Access to the component number for the array specified by ArrayName.
// Default is component 0. Use -1 for magnitude.
vtkSetMacro(ArrayComponent, int);
vtkGetMacro(ArrayComponent, int);
// Description:
// If CompositeIndex < 0 then COMPOSITE_INDEX() is not added to the output.
vtkSetMacro(CompositeIndex, int);
vtkGetMacro(CompositeIndex, int);
// Description:
// If HierarchicalLevel or HierarchicalIndex < 0 , then HIERARCHICAL_LEVEL()
// and HIERARCHICAL_INDEX() keys are not added to the output.
vtkSetMacro(HierarchicalLevel, int);
vtkGetMacro(HierarchicalLevel, int);
vtkSetMacro(HierarchicalIndex, int);
vtkGetMacro(HierarchicalIndex, int);
// Description:
// Set/Get the query expression string.
vtkSetStringMacro(QueryString);
vtkGetStringMacro(QueryString);
protected:
vtkSelectionSource();
~vtkSelectionSource();
virtual int RequestInformation(vtkInformation* request,
vtkInformationVector** inputVector,
vtkInformationVector* outputVector);
virtual int RequestData(vtkInformation* request,
vtkInformationVector** inputVector,
vtkInformationVector* outputVector);
vtkSelectionSourceInternals* Internal;
int ContentType;
int FieldType;
int ContainingCells;
int PreserveTopology;
int Inverse;
int CompositeIndex;
int HierarchicalLevel;
int HierarchicalIndex;
char *ArrayName;
int ArrayComponent;
char *QueryString;
private:
vtkSelectionSource(const vtkSelectionSource&); // Not implemented.
void operator=(const vtkSelectionSource&); // Not implemented.
};
#endif
|