「Param:get-sketchplane」の版間の差分
(ページの作成:「{{BCAD_LISP_MECH}} ; 構文 : (mech:get-sketchplane ''constraintsGroup'' ) ; 機能 : 指定された拘束グループの 2D スケッチ面 (もしあれば) を返す。 ; 引数 :* constraintsGroup : スケッチ面を取得する拘束グループの整数 ; 戻り値 : スケッチ面を指定する (originPoint normalVector) のリスト、スケッチ面が使用されていない場合は NIL 返す。 ===メモ=== * 3DConstraintsGroupを取得す…」) |
(相違点なし)
|
2023年6月5日 (月) 05:38時点における版
BricsCAD Mechanical関数 Home - BricsCADのLISP - AutoLISP Home - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
- (mech:get-sketchplane constraintsGroup )
- 機能
- 指定された拘束グループの 2D スケッチ面 (もしあれば) を返す。
- 引数
-
- constraintsGroup : スケッチ面を取得する拘束グループの整数
- 戻り値
- スケッチ面を指定する (originPoint normalVector) のリスト、スケッチ面が使用されていない場合は NIL 返す。
メモ
- 3DConstraintsGroupを取得するには、関数( mech:get-allconstraintsgroups )と( mech:get-constraintsgroup )を参照。
- (mech:has-sketchplane) も参照
- サンプル
(vl-load-mech) 2 (setq res (mech:get-allconstraintsgroups)) (2698242080 2698242176) (setq grp (car res)) 2698242080 (setq res (mech:has-sketchplane grp)) T (setq res (mech:get-sketchplane grp)) ((0 0 0) (0 0 1))
関連事項