Changeset 13041 for OpenSceneGraph/trunk/src/osgPlugins/ive/Shape.cpp
- Timestamp:
- 03/21/12 18:36:20 (14 months ago)
- Files:
-
- 1 modified
-
OpenSceneGraph/trunk/src/osgPlugins/ive/Shape.cpp (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/ive/Shape.cpp
r10762 r13041 317 317 out->writeFloat(getSkirtHeight()); 318 318 out->writeUInt(getBorderWidth()); 319 319 320 320 unsigned int size = getHeightList().size(); 321 321 out->writeUInt(size); … … 325 325 } 326 326 327 328 329 327 328 329 330 330 } 331 331 … … 350 350 //setColor(in->readVec4()); 351 351 unsigned int col = in->readUInt(); 352 unsigned int row = in->readUInt(); 352 unsigned int row = in->readUInt(); 353 353 allocate(col,row); 354 354 … … 357 357 setYInterval(in->readFloat()); 358 358 setRotation(in->readQuat()); 359 359 360 360 setSkirtHeight(in->readFloat()); 361 361 setBorderWidth(in->readUInt()); 362 362 363 363 unsigned int size = in->readUInt(); 364 364 in->_istream->read((char*)&(getHeightList()[0]), FLOATSIZE*size);
