Thanks to visit codestin.com
Credit goes to vtk.org

VTK  9.5.20251004
vtkType.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
3#ifndef vtkType_h
4#define vtkType_h
5
6#include "vtkABINamespace.h"
7#include "vtkCompiler.h" // for VTK_USE_EXTERN_TEMPLATE
8#include "vtkDeprecation.h" // For VTK_DEPRECATED_IN_9_5_0
9#include "vtkOptions.h" // for VTK_USE_64BIT_IDS, VTK_USE_64BIT_TIMESTAMPS, VTK_USE_FUTURE_BOOL
10#include "vtk_kwiml.h"
11
12#define VTK_SIZEOF_CHAR KWIML_ABI_SIZEOF_CHAR
13#define VTK_SIZEOF_SHORT KWIML_ABI_SIZEOF_SHORT
14#define VTK_SIZEOF_INT KWIML_ABI_SIZEOF_INT
15#define VTK_SIZEOF_LONG KWIML_ABI_SIZEOF_LONG
16#define VTK_SIZEOF_LONG_LONG KWIML_ABI_SIZEOF_LONG_LONG
17#define VTK_SIZEOF_FLOAT KWIML_ABI_SIZEOF_FLOAT
18#define VTK_SIZEOF_DOUBLE KWIML_ABI_SIZEOF_DOUBLE
19#define VTK_SIZEOF_VOID_P KWIML_ABI_SIZEOF_DATA_PTR
20
21/* Whether type "char" is signed (it may be signed or unsigned). */
22#if defined(KWIML_ABI_CHAR_IS_SIGNED)
23#define VTK_TYPE_CHAR_IS_SIGNED 1
24#else
25#define VTK_TYPE_CHAR_IS_SIGNED 0
26#endif
27
28/*--------------------------------------------------------------------------*/
29/* Define a unique integer identifier for each native scalar type. */
30
31/* These types are returned by GetDataType to indicate pixel type. */
32#define VTK_VOID 0
33#define VTK_BIT 1
34#define VTK_CHAR 2
35#define VTK_SIGNED_CHAR 15
36#define VTK_UNSIGNED_CHAR 3
37#define VTK_SHORT 4
38#define VTK_UNSIGNED_SHORT 5
39#define VTK_INT 6
40#define VTK_UNSIGNED_INT 7
41#define VTK_LONG 8
42#define VTK_UNSIGNED_LONG 9
43#define VTK_FLOAT 10
44#define VTK_DOUBLE 11
45#define VTK_ID_TYPE 12
46
47/* These types are not currently supported by GetDataType, but are for
48 completeness. */
49#define VTK_STRING 13
50#define VTK_OPAQUE 14
51
52#define VTK_LONG_LONG 16
53#define VTK_UNSIGNED_LONG_LONG 17
54
55/* These types are required by vtkVariant and vtkVariantArray */
56#define VTK_VARIANT 20
57#define VTK_OBJECT 21
58
59// vtkTypes.h can be included in C code directly, which does not support
60// deprecation of enum values
61#if defined(__cplusplus)
62#define VTK_DEPRECATED_IN_9_5_0_TYPE(reason) VTK_DEPRECATED_IN_9_5_0(reason)
63#else
64#define VTK_DEPRECATED_IN_9_5_0_TYPE(reason)
65#endif
66
67/*--------------------------------------------------------------------------*/
68/* Define a unique integer identifier for each native array type. */
69// NOLINTNEXTLINE(readability-enum-initial-value)
71{
73
74 // AbstractArray subclasses
78
79 // DataArray subclasses
81
82 // GenericDataArray subclasses
89
90 // ImplicitArray subclasses/typedefs
98
100};
101
102/*--------------------------------------------------------------------------*/
103// Define a unique integer identifier for each vtkDataObject type.
104// When adding a new data type here, make sure to update vtkDataObjectTypes as well.
105// Do not use values between 0 and current max, but add new values after the max,
106// as values in between may already have been used in the past and been removed since.
108{
121 VTK_MULTIGROUP_DATA_SET VTK_DEPRECATED_IN_9_5_0_TYPE("This type has been removed, do not use.") =
122 12,
124 VTK_HIERARCHICAL_DATA_SET VTK_DEPRECATED_IN_9_5_0_TYPE(
125 "This type has been removed, do not use.") = 14,
126 VTK_HIERARCHICAL_BOX_DATA_SET VTK_DEPRECATED_IN_9_5_0_TYPE(
127 "This type has been removed, please use vtkOverlappingAMR instead.") = 15,
129 VTK_HYPER_OCTREE VTK_DEPRECATED_IN_9_5_0_TYPE("This type has been removed, do not use.") = 17,
130 VTK_TEMPORAL_DATA_SET VTK_DEPRECATED_IN_9_5_0_TYPE("This type has been removed, do not use.") =
131 18,
147 VTK_PISTON_DATA_OBJECT VTK_DEPRECATED_IN_9_5_0_TYPE("This type has been removed, do not use.") =
148 34,
167
168/*--------------------------------------------------------------------------*/
169/* Define a casting macro for use by the constants below. */
170#if defined(__cplusplus)
171#define VTK_TYPE_CAST(T, V) static_cast<T>(V)
172#else
173#define VTK_TYPE_CAST(T, V) ((T)(V))
174#endif
175
176/*--------------------------------------------------------------------------*/
177/* Define min/max constants for each type. */
178#define VTK_BIT_MIN 0
179#define VTK_BIT_MAX 1
180#if VTK_TYPE_CHAR_IS_SIGNED
181#define VTK_CHAR_MIN VTK_TYPE_CAST(char, 0x80)
182#define VTK_CHAR_MAX VTK_TYPE_CAST(char, 0x7f)
183#else
184#define VTK_CHAR_MIN VTK_TYPE_CAST(char, 0u)
185#define VTK_CHAR_MAX VTK_TYPE_CAST(char, 0xffu)
186#endif
187#define VTK_SIGNED_CHAR_MIN VTK_TYPE_CAST(signed char, 0x80)
188#define VTK_SIGNED_CHAR_MAX VTK_TYPE_CAST(signed char, 0x7f)
189#define VTK_UNSIGNED_CHAR_MIN VTK_TYPE_CAST(unsigned char, 0u)
190#define VTK_UNSIGNED_CHAR_MAX VTK_TYPE_CAST(unsigned char, 0xffu)
191#define VTK_SHORT_MIN VTK_TYPE_CAST(short, 0x8000)
192#define VTK_SHORT_MAX VTK_TYPE_CAST(short, 0x7fff)
193#define VTK_UNSIGNED_SHORT_MIN VTK_TYPE_CAST(unsigned short, 0u)
194#define VTK_UNSIGNED_SHORT_MAX VTK_TYPE_CAST(unsigned short, 0xffffu)
195#define VTK_INT_MIN VTK_TYPE_CAST(int, ~(~0u >> 1))
196#define VTK_INT_MAX VTK_TYPE_CAST(int, ~0u >> 1)
197#define VTK_UNSIGNED_INT_MIN VTK_TYPE_CAST(unsigned int, 0)
198#define VTK_UNSIGNED_INT_MAX VTK_TYPE_CAST(unsigned int, ~0u)
199#define VTK_LONG_MIN VTK_TYPE_CAST(long, ~(~0ul >> 1))
200#define VTK_LONG_MAX VTK_TYPE_CAST(long, ~0ul >> 1)
201#define VTK_UNSIGNED_LONG_MIN VTK_TYPE_CAST(unsigned long, 0ul)
202#define VTK_UNSIGNED_LONG_MAX VTK_TYPE_CAST(unsigned long, ~0ul)
203#define VTK_FLOAT_MIN VTK_TYPE_CAST(float, -1.0e+38f)
204#define VTK_FLOAT_MAX VTK_TYPE_CAST(float, 1.0e+38f)
205#define VTK_DOUBLE_MIN VTK_TYPE_CAST(double, -1.0e+299)
206#define VTK_DOUBLE_MAX VTK_TYPE_CAST(double, 1.0e+299)
207#define VTK_LONG_LONG_MIN VTK_TYPE_CAST(long long, ~(~0ull >> 1))
208#define VTK_LONG_LONG_MAX VTK_TYPE_CAST(long long, ~0ull >> 1)
209#define VTK_UNSIGNED_LONG_LONG_MIN VTK_TYPE_CAST(unsigned long long, 0ull)
210#define VTK_UNSIGNED_LONG_LONG_MAX VTK_TYPE_CAST(unsigned long long, ~0ull)
211
212/*--------------------------------------------------------------------------*/
213/* Define named types and constants corresponding to specific integer
214 and floating-point sizes and signedness. */
215
216/* Select an 8-bit integer type. */
217#if VTK_SIZEOF_CHAR == 1
218typedef unsigned char vtkTypeUInt8;
219typedef signed char vtkTypeInt8;
220#define VTK_TYPE_UINT8 VTK_UNSIGNED_CHAR
221#define VTK_TYPE_UINT8_MIN VTK_UNSIGNED_CHAR_MIN
222#define VTK_TYPE_UINT8_MAX VTK_UNSIGNED_CHAR_MAX
223#define VTK_TYPE_INT8 VTK_SIGNED_CHAR
224#define VTK_TYPE_INT8_MIN VTK_SIGNED_CHAR_MIN
225#define VTK_TYPE_INT8_MAX VTK_SIGNED_CHAR_MAX
226#else
227#error "No native data type can represent an 8-bit integer."
228#endif
229
230/* Select a 16-bit integer type. */
231#if VTK_SIZEOF_SHORT == 2
232typedef unsigned short vtkTypeUInt16;
233typedef signed short vtkTypeInt16;
234#define VTK_TYPE_UINT16 VTK_UNSIGNED_SHORT
235#define VTK_TYPE_UINT16_MIN VTK_UNSIGNED_SHORT_MIN
236#define VTK_TYPE_UINT16_MAX VTK_UNSIGNED_SHORT_MAX
237#define VTK_TYPE_INT16 VTK_SHORT
238#define VTK_TYPE_INT16_MIN VTK_SHORT_MIN
239#define VTK_TYPE_INT16_MAX VTK_SHORT_MAX
240#elif VTK_SIZEOF_INT == 2
241typedef unsigned int vtkTypeUInt16;
242typedef signed int vtkTypeInt16;
243#define VTK_TYPE_UINT16 VTK_UNSIGNED_INT
244#define VTK_TYPE_UINT16_MIN VTK_UNSIGNED_INT_MIN
245#define VTK_TYPE_UINT16_MAX VTK_UNSIGNED_INT_MAX
246#define VTK_TYPE_INT16 VTK_INT
247#define VTK_TYPE_INT16_MIN VTK_INT_MIN
248#define VTK_TYPE_INT16_MAX VTK_INT_MAX
249#else
250#error "No native data type can represent a 16-bit integer."
251#endif
252
253/* Select a 32-bit integer type. */
254#if VTK_SIZEOF_INT == 4
255typedef unsigned int vtkTypeUInt32;
256typedef signed int vtkTypeInt32;
257#define VTK_TYPE_UINT32 VTK_UNSIGNED_INT
258#define VTK_TYPE_UINT32_MIN VTK_UNSIGNED_INT_MIN
259#define VTK_TYPE_UINT32_MAX VTK_UNSIGNED_INT_MAX
260#define VTK_TYPE_INT32 VTK_INT
261#define VTK_TYPE_INT32_MIN VTK_INT_MIN
262#define VTK_TYPE_INT32_MAX VTK_INT_MAX
263#elif VTK_SIZEOF_LONG == 4
264typedef unsigned long vtkTypeUInt32;
265typedef signed long vtkTypeInt32;
266#define VTK_TYPE_UINT32 VTK_UNSIGNED_LONG
267#define VTK_TYPE_UINT32_MIN VTK_UNSIGNED_LONG_MIN
268#define VTK_TYPE_UINT32_MAX VTK_UNSIGNED_LONG_MAX
269#define VTK_TYPE_INT32 VTK_LONG
270#define VTK_TYPE_INT32_MIN VTK_LONG_MIN
271#define VTK_TYPE_INT32_MAX VTK_LONG_MAX
272#else
273#error "No native data type can represent a 32-bit integer."
274#endif
275
276/* Select a 64-bit integer type. */
277#if VTK_SIZEOF_LONG_LONG == 8
278typedef unsigned long long vtkTypeUInt64;
279typedef signed long long vtkTypeInt64;
280#define VTK_TYPE_UINT64 VTK_UNSIGNED_LONG_LONG
281#define VTK_TYPE_UINT64_MIN VTK_UNSIGNED_LONG_LONG_MIN
282#define VTK_TYPE_UINT64_MAX VTK_UNSIGNED_LONG_LONG_MAX
283#define VTK_TYPE_INT64 VTK_LONG_LONG
284#define VTK_TYPE_INT64_MIN VTK_LONG_LONG_MIN
285#define VTK_TYPE_INT64_MAX VTK_LONG_LONG_MAX
286#elif VTK_SIZEOF_LONG == 8
287typedef unsigned long vtkTypeUInt64;
288typedef signed long vtkTypeInt64;
289#define VTK_TYPE_UINT64 VTK_UNSIGNED_LONG
290#define VTK_TYPE_UINT64_MIN VTK_UNSIGNED_LONG_MIN
291#define VTK_TYPE_UINT64_MAX VTK_UNSIGNED_LONG_MAX
292#define VTK_TYPE_INT64 VTK_LONG
293#define VTK_TYPE_INT64_MIN VTK_LONG_MIN
294#define VTK_TYPE_INT64_MAX VTK_LONG_MAX
295#else
296#error "No native data type can represent a 64-bit integer."
297#endif
298
299// If this is a 64-bit platform, or the user has indicated that 64-bit
300// timestamps should be used, select an unsigned 64-bit integer type
301// for use in MTime values. If possible, use 'unsigned long' as we have
302// historically.
303#if defined(VTK_USE_64BIT_TIMESTAMPS) || VTK_SIZEOF_VOID_P == 8
304#if VTK_SIZEOF_LONG == 8
305typedef unsigned long vtkMTimeType;
306#define VTK_MTIME_TYPE_IMPL VTK_UNSIGNED_LONG
307#define VTK_MTIME_MIN VTK_UNSIGNED_LONG_MIN
308#define VTK_MTIME_MAX VTK_UNSIGNED_LONG_MAX
309#else
310typedef vtkTypeUInt64 vtkMTimeType;
311#define VTK_MTIME_TYPE_IMPL VTK_TYPE_UINT64
312#define VTK_MTIME_MIN VTK_TYPE_UINT64_MIN
313#define VTK_MTIME_MAX VTK_TYPE_UINT64_MAX
314#endif
315#else
316#if VTK_SIZEOF_LONG == 4
317typedef unsigned long vtkMTimeType;
318#define VTK_MTIME_TYPE_IMPL VTK_UNSIGNED_LONG
319#define VTK_MTIME_MIN VTK_UNSIGNED_LONG_MIN
320#define VTK_MTIME_MAX VTK_UNSIGNED_LONG_MAX
321#else
322typedef vtkTypeUInt32 vtkMTimeType;
323#define VTK_MTIME_TYPE_IMPL VTK_TYPE_UINT32
324#define VTK_MTIME_MIN VTK_TYPE_UINT32_MIN
325#define VTK_MTIME_MAX VTK_TYPE_UINT32_MAX
326#endif
327#endif
328
329/* Select a 32-bit floating point type. */
330#if VTK_SIZEOF_FLOAT == 4
331typedef float vtkTypeFloat32;
332#define VTK_TYPE_FLOAT32 VTK_FLOAT
333#else
334#error "No native data type can represent a 32-bit floating point value."
335#endif
336
337/* Select a 64-bit floating point type. */
338#if VTK_SIZEOF_DOUBLE == 8
339typedef double vtkTypeFloat64;
340#define VTK_TYPE_FLOAT64 VTK_DOUBLE
341#else
342#error "No native data type can represent a 64-bit floating point value."
343#endif
344
345/*--------------------------------------------------------------------------*/
346/* Choose an implementation for vtkIdType. */
347#define VTK_HAS_ID_TYPE
348#ifdef VTK_USE_64BIT_IDS
349#if VTK_SIZEOF_LONG_LONG == 8
350typedef long long vtkIdType;
351#define VTK_ID_TYPE_IMPL VTK_LONG_LONG
352#define VTK_SIZEOF_ID_TYPE VTK_SIZEOF_LONG_LONG
353#define VTK_ID_MIN VTK_LONG_LONG_MIN
354#define VTK_ID_MAX VTK_LONG_LONG_MAX
355#define VTK_ID_TYPE_PRId "lld"
356#elif VTK_SIZEOF_LONG == 8
357typedef long vtkIdType;
358#define VTK_ID_TYPE_IMPL VTK_LONG
359#define VTK_SIZEOF_ID_TYPE VTK_SIZEOF_LONG
360#define VTK_ID_MIN VTK_LONG_MIN
361#define VTK_ID_MAX VTK_LONG_MAX
362#define VTK_ID_TYPE_PRId "ld"
363#else
364#error "VTK_USE_64BIT_IDS is ON but no 64-bit integer type is available."
365#endif
366#else
367typedef int vtkIdType;
368#define VTK_ID_TYPE_IMPL VTK_INT
369#define VTK_SIZEOF_ID_TYPE VTK_SIZEOF_INT
370#define VTK_ID_MIN VTK_INT_MIN
371#define VTK_ID_MAX VTK_INT_MAX
372#define VTK_ID_TYPE_PRId "d"
373#endif
374
375#ifndef __cplusplus
376// Make sure that when VTK headers are used by the C compiler we make
377// sure to define the bool type. This is possible when using IO features
378// like vtkXMLWriterC.h
379#include "stdbool.h"
380#endif
381
382/*--------------------------------------------------------------------------*/
383/* If not already defined, define vtkTypeBool. When VTK was started, some */
384/* compilers did not yet support the bool type, and so VTK often used int, */
385/* or more rarely unsigned int, where it should have used bool. */
386/* Eventually vtkTypeBool will switch to real bool. */
387#ifndef VTK_TYPE_BOOL_TYPEDEFED
388#define VTK_TYPE_BOOL_TYPEDEFED
389#if VTK_USE_FUTURE_BOOL
390typedef bool vtkTypeBool;
391typedef bool vtkTypeUBool;
392#else
393typedef int vtkTypeBool;
394typedef unsigned int vtkTypeUBool;
395#endif
396#endif
397
398#if defined(__cplusplus)
399/* Description:
400 * Returns true if data type tags a and b point to the same data type. This
401 * is intended to handle vtkIdType, which does not have the same tag as its
402 * underlying data type.
403 * @note This method is only available when included from a C++ source file. */
404VTK_ABI_NAMESPACE_BEGIN
405inline vtkTypeBool vtkDataTypesCompare(int a, int b)
406{
407 return (a == b ||
408 ((a == VTK_ID_TYPE || a == VTK_ID_TYPE_IMPL) && (b == VTK_ID_TYPE || b == VTK_ID_TYPE_IMPL)));
409}
410VTK_ABI_NAMESPACE_END
411#endif
412
413/*--------------------------------------------------------------------------*/
415#define vtkInstantiateTemplateMacro(decl) \
416 decl<float>; \
417 decl<double>; \
418 decl<char>; \
419 decl<signed char>; \
420 decl<unsigned char>; \
421 decl<short>; \
422 decl<unsigned short>; \
423 decl<int>; \
424 decl<unsigned int>; \
425 decl<long>; \
426 decl<unsigned long>; \
427 decl<long long>; \
428 decl<unsigned long long>
429
430#define vtkInstantiateSecondOrderTemplateMacro(decl0, decl1) \
431 decl0<decl1<float>>; \
432 decl0<decl1<double>>; \
433 decl0<decl1<char>>; \
434 decl0<decl1<signed char>>; \
435 decl0<decl1<unsigned char>>; \
436 decl0<decl1<short>>; \
437 decl0<decl1<unsigned short>>; \
438 decl0<decl1<int>>; \
439 decl0<decl1<unsigned int>>; \
440 decl0<decl1<long>>; \
441 decl0<decl1<unsigned long>>; \
442 decl0<decl1<long long>>; \
443 decl0<decl1<unsigned long long>>
444
445#define vtkInstantiateSecondOrderWithParameterTemplateMacro(decl0, decl1, par) \
446 decl0<decl1<float>, par>; \
447 decl0<decl1<double>, par>; \
448 decl0<decl1<char>, par>; \
449 decl0<decl1<signed char>, par>; \
450 decl0<decl1<unsigned char>, par>; \
451 decl0<decl1<short>, par>; \
452 decl0<decl1<unsigned short>, par>; \
453 decl0<decl1<int>, par>; \
454 decl0<decl1<unsigned int>, par>; \
455 decl0<decl1<long>, par>; \
456 decl0<decl1<unsigned long>, par>; \
457 decl0<decl1<long long>, par>; \
458 decl0<decl1<unsigned long long>, par>
459
460#define vtkInstantiateStdFunctionTemplateMacro(decl0, decl1, delc2) \
461 decl0<decl1<float(delc2)>>; \
462 decl0<decl1<double(delc2)>>; \
463 decl0<decl1<char(delc2)>>; \
464 decl0<decl1<signed char(delc2)>>; \
465 decl0<decl1<unsigned char(delc2)>>; \
466 decl0<decl1<short(delc2)>>; \
467 decl0<decl1<unsigned short(delc2)>>; \
468 decl0<decl1<int(delc2)>>; \
469 decl0<decl1<unsigned int(delc2)>>; \
470 decl0<decl1<long(delc2)>>; \
471 decl0<decl1<unsigned long(delc2)>>; \
472 decl0<decl1<long long(delc2)>>; \
473 decl0<decl1<unsigned long long(delc2)>>
474
475#define vtkInstantiateStdFunctionWithParameterTemplateMacro(decl0, decl1, delc2, par) \
476 decl0<decl1<float(delc2)>, par>; \
477 decl0<decl1<double(delc2)>, par>; \
478 decl0<decl1<char(delc2)>, par>; \
479 decl0<decl1<signed char(delc2)>, par>; \
480 decl0<decl1<unsigned char(delc2)>, par>; \
481 decl0<decl1<short(delc2)>, par>; \
482 decl0<decl1<unsigned short(delc2)>, par>; \
483 decl0<decl1<int(delc2)>, par>; \
484 decl0<decl1<unsigned int(delc2)>, par>; \
485 decl0<decl1<long(delc2)>, par>; \
486 decl0<decl1<unsigned long(delc2)>, par>; \
487 decl0<decl1<long long(delc2)>, par>; \
488 decl0<decl1<unsigned long long(delc2)>, par>
489
491#ifdef VTK_USE_EXTERN_TEMPLATE
492#define vtkExternTemplateMacro(decl) vtkInstantiateTemplateMacro(decl)
493#define vtkExternSecondOrderTemplateMacro(decl0, decl1) \
494 vtkInstantiateSecondOrderTemplateMacro(decl0, decl1)
495#define vtkExternSecondOrderWithParameterTemplateMacro(decl0, decl1, par) \
496 vtkInstantiateSecondOrderWithParameterTemplateMacro(decl0, decl1, par)
497#define vtkExternStdFunctionTemplateMacro(decl0, decl1, decl2) \
498 vtkInstantiateStdFunctionTemplateMacro(decl0, decl1, decl2)
499#define vtkExternStdFunctionWithParameterTemplateMacro(decl0, decl1, decl2, par) \
500 vtkInstantiateStdFunctionWithParameterTemplateMacro(decl0, decl1, decl2, par)
501#else
502#define vtkExternTemplateMacro(decl)
503#define vtkExternSecondOrderTemplateMacro(decl0, decl1)
504#define vtkExternSecondOrderWithParameterTemplateMacro(decl0, decl1, par)
505#define vtkExternStdFunctionTemplateMacro(decl0, decl1, decl2)
506#define vtkExternStdFunctionWithParameterTemplateMacro(decl0, decl1, decl2, par)
507#endif
508
509#endif
510// VTK-HeaderTest-Exclude: vtkType.h
int vtkTypeBool
Definition vtkABI.h:64
#define VTK_DEPRECATED_IN_9_5_0_TYPE(reason)
Definition vtkType.h:64
int vtkIdType
Definition vtkType.h:367
#define VTK_ID_TYPE_IMPL
Definition vtkType.h:368
unsigned int vtkTypeUBool
Definition vtkType.h:394
int vtkTypeBool
Definition vtkType.h:393
vtkTypeUInt32 vtkMTimeType
Definition vtkType.h:322
vtkArrayTypes
Definition vtkType.h:71
@ CompositeArray
Definition vtkType.h:92
@ DataArray
Definition vtkType.h:75
@ ScaledSoADataArrayTemplate
Definition vtkType.h:85
@ StridedArray
Definition vtkType.h:96
@ SoADataArrayTemplate
Definition vtkType.h:84
@ IndexedArray
Definition vtkType.h:94
@ PeriodicDataArray
Definition vtkType.h:87
@ VariantArray
Definition vtkType.h:77
@ VTKmDataArray
Definition vtkType.h:86
@ ImplicitArray
Definition vtkType.h:88
@ NumArrayTypes
Definition vtkType.h:99
@ StructuredPointArray
Definition vtkType.h:97
@ AoSDataArrayTemplate
Definition vtkType.h:83
@ BitArray
Definition vtkType.h:80
@ AffineArray
Definition vtkType.h:91
@ StringArray
Definition vtkType.h:76
@ StdFunctionArray
Definition vtkType.h:95
@ ConstantArray
Definition vtkType.h:93
@ AbstractArray
Definition vtkType.h:72
vtkTypesDataObject
Definition vtkType.h:108
@ VTK_POINT_SET
Definition vtkType.h:118
@ VTK_RECTILINEAR_GRID
Definition vtkType.h:112
@ VTK_DATA_SET
Definition vtkType.h:117
@ VTK_ABSTRACT_ELECTRONIC_DATA
Definition vtkType.h:156
@ VTK_NON_OVERLAPPING_AMR
Definition vtkType.h:143
@ VTK_EXPLICIT_STRUCTURED_GRID
Definition vtkType.h:154
@ VTK_AMR_DATA_OBJECT
Definition vtkType.h:164
@ VTK_STRUCTURED_POINTS
Definition vtkType.h:110
@ VTK_MULTIPIECE_DATA_SET
Definition vtkType.h:138
@ VTK_ANNOTATION
Definition vtkType.h:158
@ VTK_GEO_JSON_FEATURE
Definition vtkType.h:161
@ VTK_UNSTRUCTURED_GRID_BASE
Definition vtkType.h:150
@ VTK_REEB_GRAPH
Definition vtkType.h:141
@ VTK_GENERIC_DATA_SET
Definition vtkType.h:128
@ VTK_UNIFORM_GRID
Definition vtkType.h:119
@ VTK_CELL_GRID
Definition vtkType.h:163
@ VTK_IMAGE_STENCIL_DATA
Definition vtkType.h:162
@ VTK_OPEN_QUBE_ELECTRONIC_DATA
Definition vtkType.h:157
@ VTK_CARTESIAN_GRID
Definition vtkType.h:165
@ VTK_MOLECULE
Definition vtkType.h:146
@ VTK_UNDIRECTED_GRAPH
Definition vtkType.h:137
@ VTK_UNSTRUCTURED_GRID
Definition vtkType.h:113
@ VTK_SELECTION
Definition vtkType.h:135
@ VTK_IMAGE_DATA
Definition vtkType.h:115
@ VTK_OVERLAPPING_AMR
Definition vtkType.h:144
@ VTK_PATH
Definition vtkType.h:149
@ VTK_BSP_CUTS
Definition vtkType.h:160
@ VTK_UNIFORM_GRID_AMR
Definition vtkType.h:142
@ VTK_ARRAY_DATA
Definition vtkType.h:140
@ VTK_MULTIBLOCK_DATA_SET
Definition vtkType.h:123
@ VTK_PIECEWISE_FUNCTION
Definition vtkType.h:114
@ VTK_DIRECTED_ACYCLIC_GRAPH
Definition vtkType.h:139
@ VTK_DATA_OBJECT_TREE
Definition vtkType.h:155
@ VTK_POLY_DATA
Definition vtkType.h:109
@ VTK_PARTITIONED_DATA_SET
Definition vtkType.h:151
@ VTK_DATA_OBJECT
Definition vtkType.h:116
@ VTK_ANNOTATION_LAYERS
Definition vtkType.h:159
@ VTK_UNIFORM_HYPER_TREE_GRID
Definition vtkType.h:153
@ VTK_HYPER_TREE_GRID
Definition vtkType.h:145
@ VTK_DIRECTED_GRAPH
Definition vtkType.h:136
@ VTK_TREE
Definition vtkType.h:134
@ VTK_PARTITIONED_DATA_SET_COLLECTION
Definition vtkType.h:152
@ VTK_COMPOSITE_DATA_SET
Definition vtkType.h:120
@ VTK_GRAPH
Definition vtkType.h:133
@ VTK_TABLE
Definition vtkType.h:132
@ VTK_STRUCTURED_GRID
Definition vtkType.h:111
#define VTK_ID_TYPE
Definition vtkType.h:45