Changeset 10149
- Timestamp:
- 05/07/09 15:21:05 (4 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/ply/vertexData.cpp
r10079 r10149 127 127 128 128 // read in the faces, asserting that they are only triangles 129 uint8_t ind1 = _invertFaces ? 2 : 0;130 uint8_t ind3 = _invertFaces ? 0 : 2;129 int ind1 = _invertFaces ? 2 : 0; 130 int ind3 = _invertFaces ? 0 : 2; 131 131 for( int i = 0; i < nFaces; ++i ) 132 132 {
