|
The syntax to each Scheme extension is documented within their respective component books. However, the syntax to a Scheme extension can be obtained directly from the
Scheme AIDE application if its name is known. This is accomplished using the
syntax.scm Scheme procedure file located in the directory
<install_dir>/scm/examples (the
examples directory).
|
|
|
Append the following line to the
acisinit.scm file if it doesn't have it already.
|
|
|
(load 'syntax "syntax.scm")
|
|
|
Start
Scheme AIDE. When the syntax for a given command is needed, type:
|
|
|
(syntax "<extension_name>")
|
|
|
(syntax "solid:block")
|
|
|
This will return the syntax and argument type portions of the Scheme extension reference template.
|