home *** CD-ROM | disk | FTP | other *** search
/ Virtual Reality Zone / VRZONE.ISO / mac / PC / PCGLOVE / PCVRJET / MAKECLD.C < prev    next >
C/C++ Source or Header  |  1992-12-10  |  857b  |  51 lines

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. void main()
  5. {
  6.  
  7.  int i;
  8.  FILE *outfile;
  9.  int     scalex, scaley, scalez,
  10.      rotx=0, roty=0, rotz=0;
  11.  long int   transx, transy, transz;
  12.  
  13.  outfile = fopen ( "jet.wld", "a" );
  14.  
  15.  randomize();
  16.  for (i=0;i<100;i++)
  17.  {
  18.  
  19.    scalex = random(2)+1;
  20.    scaley = random(2)+1;
  21.    scalez = random(2)+1;
  22.    transx = (long)random(320);*/
  23.    transy = 10;
  24.    transz = (long)random(320);
  25.  
  26.    fprintf ( outfile, "object cloud %d %d %d %d %d %d %ld %ld %ld 768\n",
  27.                     scalex,
  28.                     scaley,
  29.                     scalez,
  30.                     rotx,
  31.                     roty,
  32.                     rotz,
  33.                     transx,
  34.                     transy,
  35.                     transz   );
  36.  
  37.    printf ( "object cloud %d %d %d %d %d %d %ld %ld %ld 768\n",
  38.                     scalex,
  39.                     scaley,
  40.                     scalez,
  41.                     rotx,
  42.                     roty,
  43.                     rotz,
  44.                     transx,
  45.                     transy,
  46.                     transz   );
  47.  }
  48.  
  49.  fclose ( outfile );
  50. }
  51.