CString outtest = outdir_base + "\\ou.txt";//在路径中写出文件
std::ofstream outfile(outtest);
for(int i = 0;i<tempVert.size();i++){
ZVert tempv = tempVert[i];
outfile<< String(tempv.Co3d().x)+" "+String(tempv.Co3d().y)+" "+String(tempv.Co3d().z)+" "+String(tempv.uvw[0])+" "+String(tempv.uvw[1])+" "+String(tempv.uvw[2])+" "+String(0.000000)<<std::endl;
}
上一篇文章https://blog.csdn.net/weixin_38980073/article/details/110858820说到写出txt文件。每运行一次程序,就会覆盖写出一个txt。
要做到追加写入,需要在outfile后加如下参数
std::ofstream outfile(outtest,std::ios::app);//追加文件,不加为默认覆盖
这样就不会覆盖原来的同名txt,在其后部追加写入。