「Bim:get-spaceboundaryents」の版間の差分

提供:GizmoLabs - だいたい CAD LISP なサイト
(ページの作成:「{{BCAD_LISP_BIM}} ; 構文 : (Bim:get-spaceboundaryents ''entity'') ; 機能 : entityで指定されたBIM「Space」に対する境界エンティティのリスト…」)
(相違点なし)

2023年3月21日 (火) 19:34時点における版

構文
(Bim:get-spaceboundaryents entity)


機能
entityで指定されたBIM「Space」に対する境界エンティティのリストを返す。


引数
  • entity : 境界エンティティのリストを取得するエンティティ(通常のエンティティまたはVLAオブジェクト名)(それがBIM「空間」エンティティである場合)。


戻り値
境界エンティティのエンティティ名リスト。指定された "entity "が "Space "エンティティでない場合は nil


memo:


サンプル
(vl-load-bim)
(setq roomEnt1 (car (entsel))) 
(bim:get-spaceboundaryents roomEnt1)
(<ename> ... <ename>)

(bim:get-spaceboundaryents roomEnt2x)
NIL
 

関連事項