StarCraft 2 Basic Mathematic Functions 2024 download
logo
starcraft 2 mod Basic Mathematic Functions

Basic Mathematic Functions

Game Version: -
Total Downloads: 1,374
Updated: Mar 23, 2010
Created: Mar 12, 2010

Earlier Versions

Name Size Uploaded Game Version Downloads
math.galaxy release 7.09 KB Mar 23, 2010 - 766 download Basic Mathematic Functions math.galaxy releaseDownload
math.galaxy release 6.74 KB Mar 12, 2010 - 286 download Basic Mathematic Functions math.galaxy releaseDownload
math.galaxy release 6.25 KB Mar 12, 2010 - 322 download Basic Mathematic Functions math.galaxy releaseDownload

Description

Share this:
// Basic
int round(fixed f);
int floor(fixed f);
int ceil(fixed f);
bool isInt(fixed f);
fixed mod(fixed f, fixed k);

// Trigonometric
const fixed PI = 3.14159265;
const fixed PI_OVER_TWO = 1.570796326795;
const fixed ONE_OVER_PI = 0.318309886183;
const fixed SQRT_TWO = 1.414213562373;
const fixed MATH_E = 2.718281828459;

fixed cos (fixed x);
fixed sin (fixed x);
fixed tan (fixed x);
fixed sec (fixed x);
fixed csc (fixed x);
fixed cot (fixed x);

fixed DegToRad (fixed x);
fixed RadToDeg (fixed x);

// Point
fixed PointX(point p);
fixed PointY(point p);

Comments

Add a comment