Param:has-sketchplane
(Mech:has-sketchplaneから転送)
BricsCAD Mechanical関数 Home - BricsCADのLISP - AutoLISP Home - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
- (mech:has-sketchplane constraintsGroup )
- 機能
- 拘束グループが 'スケッチ面' を使用しているかどうかを確認する。
- 引数
-
- constraintsGroup : スケッチ面ステータスを問い合わせる拘束グループの整数
- 戻り値
- スケッチ面が使われていれば T、それ以外は nil
メモ
- 3DConstraintsGroupを取得するには、関数( mech:get-allconstraintsgroups )と( mech:get-constraintsgroup )を参照。
- 3DConstraintsGroupの全ての制約を取得するには、関数( mech:get-constraints )を参照。
- サンプル
(vl-load-mech) 2 (setq res (mech:get-allconstraintsgroups)) (2698242080 2698242176) (setq grp (car res)) 2698242080 (setq res (mech:has-sketchplane grp)) NIL
関連事項