| . |
Syntax of InputKeywordsThe input is given in a free format using predefined keywords. Keywords starting with double arrow allow to structure the input. The input following a >>keyword, is related to this >>keyword until an other >>keyword is specified, e.g. >>source A double-arrow without a keyword ends the input reading, i.e. all the input that follows is ignored. Lines starting with a slash (/) in the first column are considered as comments and are ignored. The keywords are given in the same order as they should appear in the input file. If a number has to be specified, r denotes a real number and i denotes an integer number. String lengths are limited to 32 characters unless explicitely specified. Include FilesThe syntax also allows for include-files. Example: If you have stored polygon information on a file called 'data.ply', you can refer to this file in your input file with: include 'data.ply' The program then reads from the file 'data.ply' until an end_of_file marker appears or the keyword '>>'. Then the program continues to read from the input file. In addition search paths can be defined where the program expects to find the include file(s). The sentence $path '../DATA/Scenario_A' adds the name ../DATA/Scenario_A to a list of directories. This allows to put the include files where it makes sense. Options
|