「Bim:has-story」の版間の差分

提供:GizmoLabs - だいたい CAD LISP なサイト
(ページの作成:「{{BCAD_LISP_BIM}} ; 構文 : (Bim:has-story ''building'' ''story'' ) ; 機能 : ; 引数 :* building : ビルディング名の文字列 :* story : ストーリー…」)
 
編集の要約なし
 
26行目: 26行目:
(vl-load-bim)
(vl-load-bim)
(bim:has-building "おれんち")
(bim:has-building "おれんち")
T
(bim:has-story "おれんち" "2階寝室")
(bim:has-story "おれんち" "2階寝室")
T
(bim:has-story "おれんち" "15階展望室")
nil
</pre>
</pre>



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

構文
(Bim:has-story building story )


機能


引数
  • building : ビルディング名の文字列
  • story : ストーリー名の文字列


戻り値
現在の図面が、指定されたストーリーの建物を含んでいる場合は T、そうでない場合は NIL


memo

  • 建物名とストーリー名は、常に大文字と小文字を区別する!


サンプル
(vl-load-bim)
(bim:has-building "おれんち")
T
(bim:has-story "おれんち" "2階寝室")
T
(bim:has-story "おれんち" "15階展望室")
nil

関連事項