home *** CD-ROM | disk | FTP | other *** search
/ 3D World 6 (Spanish) / 3DWorld_06.iso / pc / amiga / fl_1 / fl_1.rea < prev   
Text File  |  1997-06-10  |  4KB  |  111 lines

  1. Short:    Fractal generator for Imagine (PC,Amiga included)
  2. Author:   psauvage@aei.ca (Patrick Sauvageau)
  3. Uploader: psauvage@aei.ca (Patrick Sauvageau)
  4. Version:  1.1
  5. Type:     gfx/3d
  6. Requires: 68020+FPU, 80386+FPU or a SUN Sparc
  7.  
  8.  
  9. Version: 1.1 (10,13,1996)
  10.  
  11. Description:
  12.  
  13.     The objects generated are made of a grid of evenly spaced points
  14.     in X and Y, like the primitive plane. The height (Z) position of
  15.     the points is determined by a semi-random fractal function.
  16.     Theses objects can be used as landscape or any crumpled surfaces.
  17.     The size of all objects created is 100 unit in X and in Y.
  18.  
  19.     Internally, a "virtual" landscape of 1024 X 1024 points is created as a
  20.     function of the random seed parameter. The height of a point in the
  21.     real landscape is equal to it's closest equivalent in the virtual one.
  22.     This way, all landscapes created with the same random seed are identical,
  23.     regardless of their number of points.
  24.  
  25. Included Files:
  26.     fl.txt         Documentation (This file)
  27.     land.jpg       Example picture
  28.     Land.atr       Imagine 4.0 attribute file used in land.jpg
  29.     Exec           Directory containing all executables
  30.       FL_DOS.EXE   MS-DOS version    (386, FPU)
  31.       FL_WIN32     Win32, console version (WinNT ou 95)
  32.       FL_AMIGA     Amiga (68020, FPU)
  33.       FL_SOLARIS   SUN Sparc running Solaris 2.5
  34.  
  35.       Thank to Per-Erik Westerberg for making the Amiga and Solaris versions of FL.
  36.  
  37. Usage:
  38.  
  39.    FL <File name>
  40.         <Number of points in X>
  41.         <Number of points in Y>
  42.         <Random number seed>
  43.  
  44.    <File name>
  45.         The name of the file created. If a file of the same name
  46.         already exists, it will be overwritten without warning.
  47.  
  48.     <Number of points in X>
  49.     <Number of points in Y>
  50.         Those two numbers must be greater than 3.
  51.         They indicate the number of points in the grid.
  52.  
  53.     <Random number seed>:
  54.         This is any positive number(s). Each number create a different shape.
  55.         By keeping the same random seed and changing the number of points,
  56.         you can create more or less precise version of the same landscape.
  57.         The Seed used is saved in the name of the object. The same seed
  58.         will alway produce the same shape. This parameter is optional; if
  59.         no seed are provided, a random one will be choosen.
  60.  
  61. Exemples:
  62.  
  63.     fl land.iob 10 10 765
  64.  
  65.         This command will generate an object file called "land.iob".
  66.         This object will have 100 points (10 X 10). 
  67.  
  68.     fl land2.iob 40 40 765
  69.  
  70.         This command will generate a landscape with an identical
  71.         shape as the previous one. Since it will have more points, it's shape
  72.         will be more precise.
  73.  
  74.     fl land3.iob 25 30
  75.  
  76.         This command will create a 100 unit by 100 unit random landscape,
  77.         with 25 points in X and 30 points in Y, using a random seed. The value
  78.     of the seed is stored in the object name.
  79.  
  80. Attributes:
  81.  
  82.     Objects created with FL have default attributes (white, phong shaded);
  83.     the file "land.atr" is an attribute file to add textures and colours
  84.     to the objects.
  85.  
  86. To reach the author:
  87.  
  88.     Send all comments, questions, "whish list" and bug repports to:
  89.  
  90.                 psauvage@aei.ca
  91.  
  92. Postcardware:
  93.     This program is freely redistributable as a "postcard"ware. If you use
  94.     and like this program, please send me a postcard of the place
  95.     where you are living. This program cannot be sold or included
  96.     with any sold product without my written approval. 
  97.  
  98.         Patrick Sauvageau
  99.         2485 Chartier
  100.         Saint-Hyacinthe (Quebec)
  101.         Canada
  102.         J2S 4A9
  103.  
  104.     Per-Erik Westerberg:
  105.     Per-Erik.Westerberg@uab.ericsson.se
  106.  
  107. History:
  108.     1.0    First version for PC.
  109.     1.1    Fixed the bug in the size of the TOBJ chunk (All versions);
  110.     1.1a    First Version for Amiga,Solaris and Win32.
  111.