System.Math.RadToGrad
Delphi
function RadToGrad(const Radians: Single): Single; { Grads := Radians * 200 / PI}
function RadToGrad(const Radians: Double): Double; { Grads := Radians * 200 / PI}
function RadToGrad(const Radians: Extended): Extended; { Grads := Radians * 200 / PI}
C++
extern DELPHI_PACKAGE float __fastcall RadToGrad(const float Radians)/* overload */;
Properties
| Type | Visibility | Source | Unit | Parent | 
|---|---|---|---|---|
| function | public | System.Math.pas System.Math.hpp  | 
        System.Math | System.Math | 
Description
Converts radians to grads.
Use RadToGrad to convert angles measured in radians to grads, where
grads = radians(200/pi).