码迷,mamicode.com
首页 > 其他好文 > 详细

Save vtkMatrix4x4 to a file 保存到文件

时间:2015-09-08 08:22:09      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:

 

vtkMatrix4x4是VTK中的一个表示4x4矩阵的一种数据结构,有时候我们想把其保存到一个文件中,那么可以使用如下的代码:

 

void writeVtkMatrix4x4ToFile(const vtkMatrix4x4 *m, char *filename) {
    ofstream fout(filename);
    if(!fout) {
        cout<<"File Not Opened"<<endl;  return;
    }
    for (int i = 0; i < 4; ++i) {
        for (int j = 0; j < 4; ++j) {
            fout << m->GetElement(i, j) << " ";
        }
        fcout << endl;
    }
    fcout << endl;
    fout.close();
} 

 

Save vtkMatrix4x4 to a file 保存到文件

标签:

原文地址:http://www.cnblogs.com/grandyang/p/4790505.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!