Board logo

標題: 叫AutoCAD 自動 畫圖的 範例城市 [打印本頁]

作者: sjgau    時間: 2013-11-3 20:19     標題: 叫AutoCAD 自動 畫圖的 範例城市

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <math.h>
  4. // ----------------------------------------------

  5. #define pi (4.0*atan(1.0))
  6. // ----------------------------------------------

  7. int main(int argc, char *argv[])
  8. {
  9.    // plot y= sin(x), x= 0 to pi
  10.    double x1= 0.0, x2= pi, x, y, dx;
  11.    int no= 16;
  12.    FILE *f1;
  13.    
  14.    // for x= x1 to x2 step dx do ...
  15.    dx= (x2 - x1)/no;
  16.    x2+= dx/10.0;
  17.    x= x1;
  18.    
  19.    f1= fopen("XXX.SCR", "wt");
  20.    fprintf(f1, "spline\n");
  21.    while (x <= x2) {
  22.       y= sin(x);
  23.       fprintf(f1, "%.6lf,%.6lf\n", x, y);
  24.       
  25.       x+= dx;
  26.    }
  27.    fprintf(f1, "\n\n\n");
  28.    fclose(f1);
  29.   
  30.    system("PAUSE");       
  31.    return 0;
  32. }
複製代碼





歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)