Skip to content
This repository was archived by the owner on Nov 25, 2022. It is now read-only.

Functions Reference

Danil Andreev edited this page Aug 1, 2021 · 2 revisions

Standard functions

sin

Prototype

float sinf(float value);
double sin(double value);

cos

Prototype

float cosf(float value);
double cos(double value);

tan

Prototype

float tanf(float value);
double tan(double value);

ctg

Prototype

float ctgf(float value);
double ctg(double value);

arcsin

Prototype

float asinf(float value);
double asin(double value);

arccos

Prototype

float acosf(float value);
double acos(double value);

arctan

Prototype

float atanf(float value);
double atan(double value);

arcctg

Prototype

float actgf(float value);
double actg(double value);

radians

Prototype

float radiansf(float value);
double radians(double value);

degrees

Prototype

float degreesf(float value);
double degrees(double value);

Clone this wiki locally