Action:
|
Sets the list of available options to their initial values.
|
|
Filename:
|
kern/kern_scm/opt_scm.cxx
|
|
Syntax:
|
(option:reset)
|
|
Arg Types:
|
None
|
|
Returns:
|
boolean
|
|
Description:
|
The default values for the options are presented in the option templates.
|
|
Example:
|
; option:reset
|
|
; List the options available.
|
|
(option:list)
|
|
;; ;; (("abl_c#aps" . #t)
|
|
;; ("abl_off_x#curves" . #f)
|
|
;; ("abl_rem#ote_ints" . #f)
|
|
;; ("abl_require_on#_support" . #t)
|
|
;; ("abort_on_illegal_surface" . #t)
|
|
;; ("adaptive#_grid" . #f)
|
|
;; ("adaptive_t#riangles" . #f)
|
|
;; ("add_bl_atts" . #f)
|
|
;; ("addr#ess_debug" . #t)
|
|
;; ("align_corners" . #t)
|
|
;; ("align_first_wire" . #f)
|
|
;; ("all_free_edges" . #f)
|
|
;; ("angular_control" . #t)
|
|
;; ("anno#tations" . #f)
|
|
;; ("api_checking" . #t)
|
|
;; ("approx#_eval" . #t)
|
|
;; ("approx-vbl_off#set" . #t)
|
|
;; ("auto_disp#lay" . #t)
|
|
;; ("backup_boxes" . #t)
|
|
;; ("bb_immediate_close" . #f)
|
|
;; ("bend_debug_file" . "")
|
|
;; ("bend_self_int" . #f)
|
|
;; ("bhl_smooth_edges" . #t)
|
|
;; ("bhl_smooth_surfaces" . #t)
|
|
;; ("bhl-use_ds_patch" . #f)
|
|
;; ("bhl-use_iso_approx" . #f)
|
|
;; ("bhl-use_iso_patch" . #f)
|
|
;; ("binary_format" . #f)
|
|
;; ("bl_ana#lytic_spine" . #t)
|
|
; .
|
|
; .
|
|
; .
|
|
; Set the value of an option.
|
|
(option:set "sphere_silhouettes" "on")
|
|
;; #t
|
|
; Reset the option to its previous value.
|
|
(option:reset)
|
|
;; #t
|