Changeset 9423 in orxonox.OLD for branches/terrain/src/lib/graphics/importer
- Timestamp:
- Jul 24, 2006, 2:27:39 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/terrain/src/lib/graphics/importer/terrain/terrain.cc
r9421 r9423 53 53 heightfield.pitch = tmpData->pitch; 54 54 int dataSize = heightfield.pitch*heightfield.height; 55 55 56 heightfield.data = new Uint8[dataSize]; 56 57 memcpy( heightfield.data, tmpData->pixels, sizeof(Uint8)*dataSize ); 58 for ( int x = 0; x < heightfield.width; ++x ) { 59 for ( int y = 0; y < heightfield.height; ++y ) { 60 printf( "height of %d, %d is %f\n", x, y, getAltitude( x, y ) ); 61 } 62 } 57 63 SDL_FreeSurface( tmpData ); 58 64 pagesX = (heightfield.width/(pageSize-1) );
Note: See TracChangeset
for help on using the changeset viewer.