asiInitSimOption
asiInitSimOption(
o_tool
)
=> t / nil
Description
Initializes the simulation options for the tools that are derived from the asiAnalog class. This is not applicable for tools derived from the asiSocket class. This function can be used by third-party integrators to define their own simulation options.
Arguments
Value Returned
Examples
The following example initializes simulation options as per the specified settings:
(defmethod asiInitSimOption ( ( tool <yourSimulator> ) ) asiAddSimOption( tool ?name 'mySimOption
?prompt "My Simulation Option"
)
)
=> t
Return to top