曾经,我非常羡慕那些人见人爱的人,我也想要变成那样,可是后来我才明白人见人爱也是需要天赋的,后来我开始默默努力,我想,就算我不能让每个人都喜欢我,至少因为我做的努力能得到别人的尊重。

vtk文件编写

   在paraview中加载vtk文件,可以很好的显示三维空间图像,如下cpp代码:

#include <iostream>
#include <fstream>
#include <windows.h>
#include <ctime>

using namespace std;
int main() {
    cout << "this is beginning!" << endl;
    int Nx = 50, Ny = 50;
    fstream outfile;
    char filename[20] = "output.vtk";
    outfile.open(filename, ios::out);
    if (!outfile) {
        cout << "open failed" << endl;
    }
    outfile << "# vtk DataFile Version 2.0" << endl;
    outfile << filename << endl;
    outfile << "ASCII " << endl;
    outfile << "DATASET STRUCTURED_GRID" << endl;
    outfile << "DIMENSIONS " << Nx << " " << Ny << " " << 1 << endl;
    outfile << "POINTS " << Nx * Ny * 1 << " float" << endl;
    for (int i = 0; i < 50; i++) {
        for (int j = 0; j < 50; j++) {
            outfile << i << " " << j << " " << 0 << endl; 
        }
    }

    outfile << "POINT_DATA " << Nx * Ny * 1 << endl;
    outfile << "SCALARS CON float 1" << endl;
    outfile << "LOOKUP_TABLE default" << endl;

    // 获取随机数
    srand(time(0));
    for (int i = 0; i < 50; i++)
    {
        for (int j = 0; j < 50; j++)
        {
            outfile << rand() % 10 << "\t";
        }
    }
    outfile.close();
    system("pause");
    return 0;
}

格式是固定的,将输出的文件在paraview中打开即可。如下:

 

posted @ 2018-04-12 18:30  Wayne-Zhu  阅读(2929)  评论(0编辑  收藏  举报

一分耕耘,一分收获。