⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 builtins.h

📁 a basic interpreter free basic
💻 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 + -