Mech:constraint-get-arguments

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(mech:constraint-get-arguments constraint )


機能
指定された拘束の制約引数を返す(整数値)。


引数
  • constraint : 問い合わせる拘束の整数値


戻り値
1つまたは2つの定義項目のリスト、または 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 args (mech:constraint-get-arguments constraint))  
((NIL (1 2 <Entity name: a3faedf0>)) (NIL (1 2 <Entity name: a3faef40>)))



関連事項