Civil:converter-get-c3d-profiletype

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(civil:converter-get-c3d-profiletype handle )


機能
指定された C3D プロファイルエンティティハンドルの プロファイルタイプ (整数) を返す。


引数
  • handle : 情報を取得するためのC3Dエンティティのハンドル値。


戻り値
成功した場合はプロファイルタイプの整数、handle が C3D プロファイルエンティティを参照していない場合は nil。


メモ


サンプル
(vl-load-civil)
T
(setq converter (civil:get-converter 255))
1857342512

(setq c3dents (civil:converter-get-c3d-entities converter))
(1719921328  1855578352  1719922032  1855582912  1855579152)

(setq handle (nth 0 c3dents))
1719921328

(setq profile (civil:converter-get-c3d-profiletype handle))
NIL

(setq handle (nth 3 c3dents))
1855582912

(setq profile (civil:converter-get-c3d-profiletype handle))
2



関連事項