「Vle-vector-settolerance」の版間の差分
|  (ページの作成:「{{AutoLISP}} ; 構文 : (Vle-vector-settolerance ''tol'')   ; 機能 : (vle-vector-xxx) 関数の公差プリセット。 : LISPコードは、必要に応じて異なる…」) | 編集の要約なし | ||
| 1行目: | 1行目: | ||
| {{ | {{BCAD_LISP}} | ||
| ; 構文 | ; 構文 | ||
| : (Vle-vector-settolerance ''tol'') | : (Vle-vector-settolerance ''tol'') | ||
| 42行目: | 42行目: | ||
| [[Category:AutoLISP]] | [[Category:AutoLISP]] | ||
| [[Category:BricsCADのLISP]] | |||
2023年1月28日 (土) 08:05時点における最新版
- 構文
- (Vle-vector-settolerance tol)
- 機能
- (vle-vector-xxx) 関数の公差プリセット。
- LISPコードは、必要に応じて異なる値を取得し、調整することができる。
- 引数
- 
- tol : 新しい公差(通常は 1e-06 ... 1e-12)
 
- 戻り値
- T
- MEMO:
- 通常は vle_g_vecTol に直接アクセスせず、 vle-vector-gettolerance と vle-vector-settolerance を使うこと!
 
- サンプル
<syntaxhighlight lang="lisp" line> (vle-vector-gettolerance) 1.0e-10
(vle-vector-settolerance 0.000001) T ; デフォルト交差が 1.0e-06 になった
(vle-vector-gettolerance) 1.0e-06 </syntaxhighlight>
関連事項
