Vla-angletoreal
- 構文
- (vla-angletoreal util Angle Unit)
- 機能
- 文字列の角度を実数値(倍精度浮動小数点数型)に変換する。
- 引数
-
- vla-object … vlaオブジェクト
- Angle … 角度(倍精度浮動小数点数型)
- Unit … 角度の単位 AcAngleUnits の列挙型
- 0 acDegrees : 十進数(度)
- 1 acDegreeMinuteSeconds : 度/分/秒
- 2 acGrads : グラジエント
- 3 acRadians : ラジアン
- 戻り値
- 角度の実数値(倍精度浮動小数点数型)
- サンプル
(vl-load-com) (setq *ActDoc* (vla-get-ActiveDocument (vlax-get-Acad-Object))) (setq *util* (vla-get-utility *actdoc*)) (setq ret1 (vla-AngleToReal *util* "45" acDegrees))
関連事項