Bim:get-spaceboundaryents

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(Bim:get-spaceboundaryents entity)


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


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


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


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

(bim:get-spaceboundaryents roomEnt2x)
NIL
 

関連事項