Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 | 1x 1x 1x 1x 1x 1x 1x | export const AttributeTypes = { SCALARS: 0, VECTORS: 1, NORMALS: 2, TCOORDS: 3, TENSORS: 4, GLOBALIDS: 5, PEDIGREEIDS: 6, EDGEFLAG: 7, NUM_ATTRIBUTES: 8, }; export const AttributeLimitTypes = { MAX: 0, EXACT: 1, NOLIMIT: 2, }; export const CellGhostTypes = { DUPLICATECELL: 1, // the cell is present on multiple processors HIGHCONNECTIVITYCELL: 2, // the cell has more neighbors than in a regular mesh LOWCONNECTIVITYCELL: 4, // the cell has less neighbors than in a regular mesh REFINEDCELL: 8, // other cells are present that refines it. EXTERIORCELL: 16, // the cell is on the exterior of the data set HIDDENCELL: 32, // the cell is needed to maintain connectivity, but the data values should be ignored. }; export const PointGhostTypes = { DUPLICATEPOINT: 1, // the cell is present on multiple processors HIDDENPOINT: 2, // the point is needed to maintain connectivity, but the data values should be ignored. }; export const AttributeCopyOperations = { COPYTUPLE: 0, INTERPOLATE: 1, PASSDATA: 2, ALLCOPY: 3, // all of the above }; export const ghostArrayName = 'vtkGhostType'; export const DesiredOutputPrecision = { DEFAULT: 0, // use the point type that does not truncate any data SINGLE: 1, // use Float32Array DOUBLE: 2, // use Float64Array }; export default { AttributeCopyOperations, AttributeLimitTypes, AttributeTypes, CellGhostTypes, DesiredOutputPrecision, PointGhostTypes, ghostArrayName, }; |