/usr/include/vtk-6.3/vtkGenericAttribute.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 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkGenericAttribute.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 vtkGenericAttribute - abstract class defined API for attribute data
// .SECTION Description
// vtkGenericAttribute is an abstract class that defines an API for attribute
// data. Attribute data is data associated with the topology or geometry of
// a dataset (i.e., points, cells, etc.). vtkGenericAttribute is part of the
// adaptor framework (see GenericFiltering/README.html).
//
// vtkGenericAttribute provides a more general interface to attribute data
// than its counterpart vtkDataArray (which assumes a linear, contiguous
// array). It adopts an iterator interface, and allows attributes to be
// associated with points, edges, faces, or edges.
#ifndef vtkGenericAttribute_h
#define vtkGenericAttribute_h
#include "vtkCommonDataModelModule.h" // For export macro
#include "vtkObject.h"
class vtkGenericCellIterator;
class vtkGenericAdaptorCell;
class vtkGenericPointIterator;
enum
{
vtkPointCentered,
vtkCellCentered,
vtkBoundaryCentered
};
class VTKCOMMONDATAMODEL_EXPORT vtkGenericAttribute : public vtkObject
{
public:
vtkTypeMacro(vtkGenericAttribute,vtkObject);
virtual void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Name of the attribute. (e.g. "velocity")
// \post result_may_not_exist: result!=0 || result==0
virtual const char *GetName() = 0;
// Description:
// Dimension of the attribute. (1 for scalar, 3 for velocity)
// \post positive_result: result>=0
// \post GetType()==VTK_SCALARS implies result==1
// \post (GetType()==VTK_VECTORS||(GetType()==VTK_NORMALS)||(GetType()==VTK_TCOORDS) implies result==3
// \post GetType()==VTK_TENSORS implies result==6
virtual int GetNumberOfComponents() = 0;
// Description:
// Is the attribute centered either on points, cells or boundaries?
// \post valid_result: (result==vtkPointCentered)||(result==vtkCellCentered)
virtual int GetCentering() = 0;
// Description:
// Type of the attribute: scalar, vector, normal, texture coordinate, tensor
// \post valid_result: (result==vtkDataSetAttributes::SCALARS)
// ||(result==vtkDataSetAttributes::VECTORS)
// ||(result==vtkDataSetAttributes::NORMALS)
// ||(result==vtkDataSetAttributes::TCOORDS)
// ||(result==vtkDataSetAttributes::TENSORS)
virtual int GetType()=0;
// Description:
// Type of the components of the attribute: int, float, double
// \post valid_result: (result==VTK_BIT) ||(result==VTK_CHAR)
// ||(result==VTK_UNSIGNED_CHAR) ||(result==VTK_SHORT)
// ||(result==VTK_UNSIGNED_SHORT)||(result==VTK_INT)
// ||(result==VTK_UNSIGNED_INT) ||(result==VTK_LONG)
// ||(result==VTK_UNSIGNED_LONG) ||(result==VTK_FLOAT)
// ||(result==VTK_DOUBLE) ||(result==VTK_ID_TYPE)
virtual int GetComponentType() = 0;
// Description:
// Number of tuples.
// \post valid_result: result>=0
virtual vtkIdType GetSize() = 0;
// Description:
// Size in kibibytes (1024 bytes) taken by the attribute.
virtual unsigned long GetActualMemorySize() = 0;
// Description:
// Range of the attribute component `component'. If `component'==-1, it
// returns the range of the magnitude (euclidean norm).
// It returns double, even if GetType()==VTK_INT.
// NOT THREAD SAFE
// \pre valid_component: (component>=-1)&&(component<GetNumberOfComponents())
// \post result_exists: result!=0
virtual double *GetRange(int component=0) = 0;
// Description:
// Range of the attribute component `component'. If `component'==-1, it
// returns the range of the magnitude (euclidean norm).
// THREAD SAFE
// \pre valid_component: (component>=-1)&&(component<GetNumberOfComponents())
virtual void GetRange(int component,
double range[2]) = 0;
// Description:
// Return the maximum euclidean norm for the tuples.
// \post positive_result: result>=0
virtual double GetMaxNorm()=0;
// Description:
// Attribute at all points of cell `c'.
// \pre c_exists: c!=0
// \pre c_valid: !c->IsAtEnd()
// \post result_exists: result!=0
// \post valid_result: sizeof(result)==GetNumberOfComponents()*c->GetCell()->GetNumberOfPoints()
virtual double *GetTuple(vtkGenericAdaptorCell *c) = 0;
// Description:
// Put attribute at all points of cell `c' in `tuple'.
// \pre c_exists: c!=0
// \pre c_valid: !c->IsAtEnd()
// \pre tuple_exists: tuple!=0
// \pre valid_tuple: sizeof(tuple)>=GetNumberOfComponents()*c->GetCell()->GetNumberOfPoints()
virtual void GetTuple(vtkGenericAdaptorCell *c, double *tuple) = 0;
// Description:
// Attribute at all points of cell `c'.
// \pre c_exists: c!=0
// \pre c_valid: !c->IsAtEnd()
// \post result_exists: result!=0
// \post valid_result: sizeof(result)==GetNumberOfComponents()*c->GetCell()->GetNumberOfPoints()
virtual double *GetTuple(vtkGenericCellIterator *c) = 0;
// Description:
// Put attribute at all points of cell `c' in `tuple'.
// \pre c_exists: c!=0
// \pre c_valid: !c->IsAtEnd()
// \pre tuple_exists: tuple!=0
// \pre valid_tuple: sizeof(tuple)>=GetNumberOfComponents()*c->GetCell()->GetNumberOfPoints()
virtual void GetTuple(vtkGenericCellIterator *c, double *tuple) = 0;
// Description:
// Value of the attribute at position `p'.
// \pre p_exists: p!=0
// \pre p_valid: !p->IsAtEnd()
// \post result_exists: result!=0
// \post valid_result_size: sizeof(result)==GetNumberOfComponents()
virtual double *GetTuple(vtkGenericPointIterator *p) = 0;
// Description:
// Put the value of the attribute at position `p' into `tuple'.
// \pre p_exists: p!=0
// \pre p_valid: !p->IsAtEnd()
// \pre tuple_exists: tuple!=0
// \pre valid_tuple_size: sizeof(tuple)>=GetNumberOfComponents()
virtual void GetTuple(vtkGenericPointIterator *p, double *tuple) = 0;
// Description:
// Put component `i' of the attribute at all points of cell `c' in `values'.
// \pre valid_component: (i>=0) && (i<GetNumberOfComponents())
// \pre c_exists: c!=0
// \pre c_valid: !c->IsAtEnd()
// \pre values_exist: values!=0
// \pre valid_values: sizeof(values)>=c->GetCell()->GetNumberOfPoints()
virtual void GetComponent(int i,vtkGenericCellIterator *c, double *values) = 0;
// Description:
// Value of the component `i' of the attribute at position `p'.
// \pre valid_component: (i>=0) && (i<GetNumberOfComponents())
// \pre p_exists: p!=0
// \pre p_valid: !p->IsAtEnd()
virtual double GetComponent(int i,vtkGenericPointIterator *p) = 0;
// Description:
// Recursive duplication of `other' in `this'.
// \pre other_exists: other!=0
// \pre not_self: other!=this
virtual void DeepCopy(vtkGenericAttribute *other) = 0;
// Description:
// Update `this' using fields of `other'.
// \pre other_exists: other!=0
// \pre not_self: other!=this
virtual void ShallowCopy(vtkGenericAttribute *other) = 0;
protected:
vtkGenericAttribute();
~vtkGenericAttribute();
private:
vtkGenericAttribute(const vtkGenericAttribute&); // Not implemented.
void operator=(const vtkGenericAttribute&); // Not implemented.
};
#endif
|