EvEmu  0.8.4
11 September 2021
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Ga Namespace Reference

Classes

class  GaDegree
 
class  GaException
 
class  GaMat3x3
 
class  GaMat4x4
 
singleton  GaPtr
 
class  GaQuat
 
class  GaRadian
 
class  GaVec3
 
class  Math
 

Typedefs

typedef unsigned int GaUint
 
typedef unsigned char GaByte
 
typedef double GaFloat
 
typedef std::string GaString
 
typedef std::stringstream GaStringStream
 
typedef std::vector< GaStringGaStringList
 

Functions

GaExpInl GaVec3 operator* (const GaFloat c, const GaVec3 &v1)
 
GaExpInl GaVec3 operator/ (const GaFloat c, const GaVec3 &v1)
 

Variables

static const GaFloat GaInfinity = DBL_MAX
 

Typedef Documentation

typedef unsigned char Ga::GaByte

Definition at line 67 of file GaPreReqs.h.

typedef double Ga::GaFloat

Definition at line 69 of file GaPreReqs.h.

typedef std::string Ga::GaString

Definition at line 76 of file GaPreReqs.h.

typedef std::vector<GaString> Ga::GaStringList

Definition at line 78 of file GaPreReqs.h.

typedef std::stringstream Ga::GaStringStream

Definition at line 77 of file GaPreReqs.h.

typedef unsigned int Ga::GaUint

Definition at line 66 of file GaPreReqs.h.

Function Documentation

GaExpInl GaVec3 Ga::operator* ( const GaFloat  c,
const GaVec3 &  v1 
)

Definition at line 211 of file GaTypes.h.

211  {
212  return(v1 * c);
213  }
GaExpInl GaVec3 Ga::operator/ ( const GaFloat  c,
const GaVec3 &  v1 
)

Definition at line 214 of file GaTypes.h.

214  {
215  return(v1 / c);
216  }

Variable Documentation

const GaFloat Ga::GaInfinity = DBL_MAX
static

Definition at line 70 of file GaPreReqs.h.