machine

Connection diagram

machine
inport 'a'       getBoolean('partId')
inport 'b'       invOut
more inports ...      
         
 

Description

The machine element is the container for all other elements. There can be only one machine element in a machine description file. The machine elements is itself contained in the prebuilt top-level root element that forms the runtime environment of the machine.

Machine element arguments:

authorInformation about the author
nameName string
versionVersion string

Inputs

The machine inputs are formed by the contained inport elements. See logInport, numInport, stringInport for details.

Outputs

All ouputs of the contained elements can be accessed from JavaScript.

Example

<machine
    id="machine"
    name="Shuttle animation demo"
    author="ulrich.hoehne@arxio.de"
    version= "0.4 - 17.06.2003">
    
    All machine elements included here    

</machine>