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

提供:GizmoLabs - だいたい CAD LISP なサイト
(ページの作成:「{{BCAD_LISP_BIM}} ; 構文 : (Bim:get-spacearea ''entity'') ; 機能 : 指定された BIM「Space」エンティティの面積を返す。 ; 引数 :* entity : 面…」)
 
(相違点なし)

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

構文
(Bim:get-spacearea entity)


機能
指定された BIM「Space」エンティティの面積を返す。


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


戻り値
entity の面積実数。指定された "entity "が "Space" エンティティでない場合は nil


サンプル
(vl-load-bim)
(setq ent (car (entsel)))  
(bim:get-spacearea ent)
152.2256
 

関連事項