我已经定义了 var like
typedef struct{
float x;
float y;
float z;
} 3DPOINT;
然后,在我的代码中,我设置了一个包含 3DPOINT 的数组
3DPOINT myArray[1280];
我正确填充了这个数组,现在我需要将每个位置写入 txt 文件。
std::ofstream fs("c:\\testvalues.txt");
for (int i=0;i<1280;i++)
{
//here I must get array position data and convert it to string
fs<<myArrayPositionToString<<"\x0D\x0A";
}
fs.close();