Skip to content

Latest commit

 

History

History
44 lines (38 loc) · 944 Bytes

math_angle.md

File metadata and controls

44 lines (38 loc) · 944 Bytes

math_angle

目次

関数

deg2rad(float)
constexpr float deg2rad(
    float deg
);

度数法での角度を弧度法での角度に変換します

rad2deg(float)
constexpr float rad2deg(
    float rad
);

弧度法での角度を度数法での角度に変換します

angle2rad(float, AngleType)
constexpr float angle2rad(
    float angle,
    AngleType angleType
);

AngleType での角度を孤度法での角度に変換します

angle2deg(float, AngleType)
constexpr float angle2deg(
    float angle,
    AngleType angleType
);

AngleType での角度を度数法での角度に変換します

<< 戻る