「Param:constraint-get-measurement」の版間の差分
(ページの作成:「{{BCAD_LISP_MECH}} ; 構文 : (mech:constraint-get-measurement ''constraint'' ''argIndex'') ; 機能 : 指定された拘束の測定モードを返す。 ; 引数 :* constraint : 問い合わせる拘束の整数値 :* argIndex : 第1定義体=0、または第2定義体=1 ; 戻り値 : 3DConstraints MesurementMode値の整数、または NIL ;サンプル <pre class="brush:autolisp;"> (vl-load-mech) 2 (setq blkId (tblobjname "BLOCK" "*Model_Space")) <Enti…」) |
細 (Gizmon がページ「Mech:constraint-get-measurement」を「Param:constraint-get-measurement」に移動しました) |
||
(同じ利用者による、間の1版が非表示) | |||
14行目: | 14行目: | ||
; 戻り値 | ; 戻り値 | ||
: | : [[Mechanical関数-BricsCAD#3D_拘束定数|3D拘束定数 MesurementMode]]値の整数、または NIL | ||
2024年10月6日 (日) 00:43時点における最新版
BricsCAD Mechanical関数 Home - BricsCADのLISP - AutoLISP Home - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
- (mech:constraint-get-measurement constraint argIndex)
- 機能
- 指定された拘束の測定モードを返す。
- 引数
-
- constraint : 問い合わせる拘束の整数値
- argIndex : 第1定義体=0、または第2定義体=1
- 戻り値
- 3D拘束定数 MesurementMode値の整数、または NIL
- サンプル
(vl-load-mech) 2 (setq blkId (tblobjname "BLOCK" "*Model_Space")) <Entity name: a44cefc0> (setq grp (mech:get-constraintsgroup blkId)) 2684693328 (setq constraints (mech:get-constraints grp)) (2684692368) (setq constraint (nth 0 constraints)) 2684692368 (setq measure (mech:constraint-get-measurement constraint 0)) nil
関連事項