標題:
叫AutoCAD 自動 畫圖的 範例城市
[打印本頁]
作者:
sjgau
時間:
2013-11-3 20:19
標題:
叫AutoCAD 自動 畫圖的 範例城市
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
// ----------------------------------------------
#define pi (4.0*atan(1.0))
// ----------------------------------------------
int main(int argc, char *argv[])
{
// plot y= sin(x), x= 0 to pi
double x1= 0.0, x2= pi, x, y, dx;
int no= 16;
FILE *f1;
// for x= x1 to x2 step dx do ...
dx= (x2 - x1)/no;
x2+= dx/10.0;
x= x1;
f1= fopen("XXX.SCR", "wt");
fprintf(f1, "spline\n");
while (x <= x2) {
y= sin(x);
fprintf(f1, "%.6lf,%.6lf\n", x, y);
x+= dx;
}
fprintf(f1, "\n\n\n");
fclose(f1);
system("PAUSE");
return 0;
}
複製代碼
歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)