「Civil:point-get-labelrotation」の版間の差分

提供:GizmoLabs - だいたい CAD LISP なサイト
(ページの作成:「{{BCAD_LISP_CIVIL}} ; 構文 : (Civil:point-get-labelrotation ''ptEname'' ) ; 機能 : ptEname C3D 点エンティティのラベルの回転を取得する。 ; 引数 :* ptEname : 値を取得する Civil点 のename ; 戻り値 : 回転角度、それ以外は nil ; サンプル <pre class="brush: autolisp;"> (vl-load-civil) T (setq c3pt (car entsel)) <Entity name: 70180060> (Civil:point-get-labelrotation c3pt) 0.0 (Civil:point-set-labelrotation c3pt 45…」)
 
編集の要約なし
 
14行目: 14行目:


; 戻り値
; 戻り値
: 回転角度、それ以外は nil
: 回転角度(ラジアン?)、それ以外は nil





2024年11月23日 (土) 07:38時点における最新版

構文
(Civil:point-get-labelrotation ptEname )


機能
ptEname C3D 点エンティティのラベルの回転を取得する。


引数
  • ptEname : 値を取得する Civil点 のename


戻り値
回転角度(ラジアン?)、それ以外は nil


サンプル
(vl-load-civil)
T
(setq c3pt (car entsel))
<Entity name: 70180060>
(Civil:point-get-labelrotation c3pt)
0.0
(Civil:point-set-labelrotation c3pt 45.0))
T
(Civil:point-get-labelrotation c3pt)
45.0



関連事項