System.Math.GradToRad

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

function GradToRad(const Grads: Single): Single;   { Radians := Grads * PI / 200 }
function GradToRad(const Grads: Double): Double;   { Radians := Grads * PI / 200 }
function GradToRad(const Grads: Extended): Extended;   { Radians := Grads * PI / 200 }

C++

extern DELPHI_PACKAGE float __fastcall GradToRad(const float Grads)/* overload */;

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
function public
System.Math.pas
System.Math.hpp
System.Math System.Math

Beschreibung

Wandelt einen Winkel vom Neugradmaß in das Bogenmaß um.

GradToRad wandelt einen Winkel vom Neugradmaß (Gon) in das Bogenmaß (Rad) um. Dabei gilt:

Rad = Gon(pi/200).

Siehe auch