Civil:point-set-symbolrotation

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(Civil:point-set-symbolrotation 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-symbolrotation c3pt)
0.0
(Civil:point-set-symbolrotation c3pt 45)
T
(Civil:point-get-symbolrotation c3pt)
45.0



関連事項