Civil:converter-get-c3d-basesurface

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


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


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


戻り値
成功ならベースサーフェス定義データ、ハンドルがC3Dプロファイルエンティティを参照しない場合は nil。


メモ


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

(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

(setq surface (civil:converter-get-c3d-basesurface handle))
("Existing Ground" "" 2 <Entity name: 557c9490>)



関連事項