?? builtins.h
字號:
#pragma once
class CBuiltins
{
public:
CBuiltins(void);
~CBuiltins(void);
// Return a sine
static float SIN(float Value);
// Return a cosine
static float COS(float Value);
// Return a tangent
static float TAN(float Value);
// Return an arctangent
static float ATN(float Value);
// Return a natural exponent
static float EXP(float Value);
// Returns an absolute value
static float ABS(float Value);
// Return a natural logarithm
static float LOG(float Value);
// Return a square root
static float SQR(float Value);
// Return a random value between 0 and 1
static float RND(float Value);
// Return an integer (technically, just strips off the mantissa)
static float INT(float Value);
};
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -