1

我正在尝试使用 C 创建一个接口,以生成可以旋转的曲面图。我有 C 来生成情节,但不能旋转,有什么想法吗?看起来我的程序仍然对这个过程有某种控制,但我真的不知道。

这是我的代码:

#include "stdio.h"
#include "stdlib.h"
#include "unistd.h"

int main()
{
    FILE * temp = fopen("test.dat", "w");

    fprintf(temp, "set isosamples 100 \n");
    fprintf(temp, "set samples 100 \n");
    fprintf(temp, "unset key \n");
    fprintf(temp, "set title \"Something Test\" \n");
    fprintf(temp, "set xrange[-4:4] \n");
    fprintf(temp, "set yrange[-4:4] \n");
    fprintf(temp, "set ztics 1 \n");
    fprintf(temp, "unset surface \n");
    fprintf(temp, "set pm3d \n");
    fprintf(temp, "splot besj0(x**2+y**2) \n");
    fclose(temp);
    system("gnuplot -persist \"test.dat\"");

    return 0;
}

任何帮助将不胜感激!

谢谢

4

0 回答 0