Civil:point-set-labelrotation

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(Civil:point-set-labelrotation ptEname rotation )


機能
ptEname C3D 点エンティティのラベルに新しい回転を割り当てる。


引数
  • ptEname : 値を割り当てる Civil点 のename
  • rotation : ptEname点のラベルに割り当てる新しい回転角度の実数。(ラジアン?)


戻り値
成功なら T、それ以外は 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



関連事項