? .DS_Store ? Rendering/.DS_Store Index: IO/vtkPLY.cxx =================================================================== RCS file: /cvsroot/VTK/VTK/IO/vtkPLY.cxx,v retrieving revision 1.26 diff -r1.26 vtkPLY.cxx 83,85c83,85 < "char", "short", "int", < "uchar", "ushort", "uint", < "float", "double", --- > "char", "short", "int", "int32", > "uchar", "ushort", "uint", "uint8", > "float", "float32", "double", 89c89 < 0, 1, 2, 4, 1, 2, 4, 4, 8 --- > 0, 1, 2, 4, 4, 1, 2, 4, 1, 4, 4, 8 1781a1782,1787 > > char *pos = strstr(str, "vertex_index"); > if (pos != NULL) > { > strcpy(pos, "vertex_indices"); > } 1795a1802,1805 > else if (*ptr == '\r') { > *ptr = ' '; > *ptr2 = '\0'; > } 1871a1882,1885 > case PLY_UINT8: > puchar = (unsigned char *) item; > uint_value = *puchar; > return ((double) uint_value); 1880a1895 > case PLY_INT32: 1888a1904 > case PLY_FLOAT32: 1939a1956 > case PLY_INT32: 1945a1963 > case PLY_UINT8: 1962a1981 > case PLY_FLOAT32: 2004a2024 > case PLY_INT32: 2007a2028 > case PLY_UINT8: 2012a2034 > case PLY_FLOAT32: 2059a2082,2086 > case PLY_UINT8: > puchar = (unsigned char *) item; > uint_value = *puchar; > fprintf (fp, "%d ", uint_value); > return ((double) uint_value); 2070a2098 > case PLY_INT32: 2080a2109 > case PLY_FLOAT32: 2124a2154 > case PLY_UINT8: 2139a2170 > case PLY_INT32: 2149a2181 > case PLY_FLOAT32: 2200a2233 > case PLY_UINT8: 2224a2258 > case PLY_INT32: 2242a2277 > case PLY_FLOAT32: 2294a2330,2331 > case PLY_INT32: > case PLY_UINT8: 2306a2344 > case PLY_FLOAT32: 2354a2393 > case PLY_UINT8: 2366a2406 > case PLY_INT32: 2374a2415 > case PLY_FLOAT32: Index: IO/vtkPLY.h =================================================================== RCS file: /cvsroot/VTK/VTK/IO/vtkPLY.h,v retrieving revision 1.15 diff -r1.15 vtkPLY.h 80,85c80,88 < #define PLY_UCHAR 4 < #define PLY_USHORT 5 < #define PLY_UINT 6 < #define PLY_FLOAT 7 < #define PLY_DOUBLE 8 < #define PLY_END_TYPE 9 --- > #define PLY_INT32 4 > #define PLY_UCHAR 5 > #define PLY_USHORT 6 > #define PLY_UINT 7 > #define PLY_UINT8 8 > #define PLY_FLOAT 9 > #define PLY_FLOAT32 10 > #define PLY_DOUBLE 11 > #define PLY_END_TYPE 12