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