Civil:converter-get-c3d-alignmenttype

提供:GizmoLabs - だいたい CAD LISP なサイト
2024年11月14日 (木) 04:35時点におけるGizmon (トーク | 投稿記録)による版 (ページの作成:「{{BCAD_LISP_CIVIL}} ; 構文 : (civil:converter-get-c3d-alignmenttype ''handle'' ) ; 機能 : 指定されたC3Dエンティティハンドル(整数)の定義データのリストを返す。 ; 引数 :* ''handle'' : 情報を取得するためのC3Dエンティティのハンドル値。 ; 戻り値 : 成功した場合は線形タイプの整数、handle が C3D 線形エンティティを参照していない場合は nil。 ==== メモ ==== *…」)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
構文
(civil:converter-get-c3d-alignmenttype 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))
1861791120

(setq align (civil:converter-get-c3d-alignmenttype handle))
nil

(setq handle (nth 3 c3dents))
2097478000

(setq align (civil:converter-get-c3d-alignmenttype handle))
0



関連事項