Civil:point-set-elevation

提供:GizmoLabs - だいたい CAD LISP なサイト
2024年11月22日 (金) 06:44時点におけるGizmon (トーク | 投稿記録)による版 (ページの作成:「{{BCAD_LISP_CIVIL}} ; 構文 : (Civil:point-set-elevation ''ptEname'' ''elevation'' ) ; 機能 : ptEname C3D 点エンティティに新しい標高座標値を設定する。 ; 引数 :* ptEname : 新しい標高座標値を割り当てる Civil点 のename :* northing : ptEname に割り当てる新しい標高座標値の実数。 ; 戻り値 : 成功なら T、それ以外は nil ; サンプル <pre class="brush: autolisp;"> (vl-load-civil) T (setq c3p…」)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
構文
(Civil:point-set-elevation ptEname elevation )


機能
ptEname C3D 点エンティティに新しい標高座標値を設定する。


引数
  • ptEname : 新しい標高座標値を割り当てる Civil点 のename
  • northing : ptEname に割り当てる新しい標高座標値の実数。


戻り値
成功なら T、それ以外は nil


サンプル
(vl-load-civil)
T
(setq c3pt (car entsel))
<Entity name: 70180060>
(Civil:point-get-elevation c3pt)
30.973543
(Civil:point-set-elevation c3pt (getpoint))
T
(Civil:point-get-elevation c3pt)
50.659485



関連事項