Revision Log
*** empty log message ***
#include "BitmapFont.h"
ostream& operator<<(ostream &os,const BitmapFont &bf){
os << "width= " << bf.getWidth() <<",height=" << bf.getHeight() <<"\n";
for(int y=0;y<bf.getHeight();y++){
for(int x=0;x<bf.getWidth();x++){
if(bf.get(x,y)) cout << '@';
else cout << '.';
}
cout << "\n";
}
return cout;
}
|
ktanaka Powered by ViewCVS 1.0-dev |
ViewCVS and CVS Help |