Changeset 10079
- Timestamp:
- 04/22/09 18:42:16 (4 years ago)
- Location:
- OpenSceneGraph/trunk/src/osgPlugins/ply
- Files:
-
- 2 modified
-
ply.h (modified) (1 diff)
-
vertexData.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/ply/ply.h
r10014 r10079 33 33 #ifndef __PLY_H__ 34 34 #define __PLY_H__ 35 36 // include to quieten down silly VS warnings 37 #include <osg/Export> 35 38 36 39 #ifdef __cplusplus -
OpenSceneGraph/trunk/src/osgPlugins/ply/vertexData.cpp
r10040 r10079 10 10 11 11 #include "typedefs.h" 12 13 12 #include "vertexData.h" 14 13 #include "ply.h" 14 15 15 #include <cstdlib> 16 16 #include <algorithm> … … 250 250 // Check all color elements read or not 251 251 if( hasColors && !ignoreColors ) 252 { 252 253 MESHASSERT( _colors->size() == static_cast< size_t >( nElems ) ); 254 } 253 255 } 254 256 catch( exception& e )
