Tingr:convertradtoslope
BricsCADのLISP - Tin+Civil関数 - AutoLISP Home - AutoLISP 目次 - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
- (Tingr:convertradtoslope format slope )
- 機能
- format で与えられたラジアン値の傾きを勾配値に変換する。
- 引数
-
- format : 傾斜値の形式を指定する整数。(bcTinSlopeRiseRun = 0, bcTinSlopeDegrees = 1, bcTinSlopePercent = 2, bcTinSlopeRadians = 3)
- slope : 勾配に変換されるラジアン値
- 戻り値
- ラジアン値 or NIL
- メモ
- 勾配フォーマットについては、ETinSlopeFormatを参照。
- サンプル
(vl-load-tin) (Tingr:convertradtoslope 0 (getorient '(0 0 0) "角度を指定: ")) ; 45 1.0 (Tingr:convertradtoslope 1 0.785398163397448 ) 45.0 (Tingr:convertradtoslope 2 (getorient '(0 0 0) "角度を指定: ")) 1.0
関連事項