Go to the first, previous, next, last section, table of contents.
Author(s): Göran Smedbäck.
Version: 1.11#222 (2004/5/24, 13:8:7 CEST)
- Library usage:
:- use_module(library(generator)).
- Exports:
- Predicates:
generator/2
,
nodeDeclaration/4
.
- Other modules used:
- System library modules:
aggregates
,
dynamic
,
iso_misc
,
iso_byte_char
,
iso_incomplete
,
operators
,
read
,
write
,
provrml/lookup
,
provrml/io
,
provrml/generator_util
,
provrml/parser_util
,
provrml/error
,
provrml/internal_types
.
- PREDICATE: generator/2:
-
Usage: generator(Terms, VRML)
- Description: This predicate is the generator of VRML code. It accepts a list of terms that is correct VRML code, other kind of terms will be rejected will errormessage accordingly. The output is a string of correct VRML code, acceptable for VRML browsers.
- Call and exit should be compatible with:
Terms
is a list of terms
s.
(basic_props:list/2
)
VRML
is a string (a list of character codes).
(basic_props:string/1
)
- The following properties should hold at call time:
Terms
is currently a term which is not a free variable.
(term_typing:nonvar/1
)
VRML
is a free variable.
(term_typing:var/1
)
- PREDICATE: nodeDeclaration/4:
-
No further documentation available for this predicate.
Go to the first, previous, next, last section, table of contents.