Param:get-constraints
BricsCAD Mechanical関数 Home - BricsCADのLISP - AutoLISP Home - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
- (mech:get-constraints idBlock [ createIfNotExist ])
- 機能
- 指定されたidBlock(ename)BlockTableRecordに対する 3DConstraintsのリストを返す。
- idBlockに制約グループが割り当てられておらず、createIfNotExistがNILでない場合、新しい制約グループが作成される。
- 引数
-
- idBlock : (ename) 問い合わせるBlockTableRecord。
- createIfNotExist : (T/nil) nil 以外の場合、idBlock BlockTableRecord がなければ場合に新しい ConstraintGroup が作成される。
- 戻り値
- 3DConstraintsの整数リストまたは 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
関連事項