gKit2 light
Public Member Functions | Public Attributes | List of all members

vecteur generique, utilitaire. More...

#include <vec.h>

Public Member Functions

 vec3 ()
 constructeur par defaut. More...
 
 vec3 (const float _x, const float _y, const float _z)
 
 vec3 (const vec2 &a, const float _z)
 constructeur par defaut. More...
 
 vec3 (const Point &a)
 cree un vecteur generique a partir des coordonnees du point a. More...
 
 vec3 (const Vector &v)
 cree un vecteur generique a partir des coordonnees du vecteur v. More...
 
float operator() (const unsigned int i) const
 renvoie la ieme composante du vecteur. More...
 
float & operator() (const unsigned int i)
 

Public Attributes

float x
 
float y
 
float z
 

Detailed Description

vecteur generique, utilitaire.

Definition at line 145 of file vec.h.

Constructor & Destructor Documentation

◆ vec3() [1/2]

vec3::vec3 ( )
inline

constructeur par defaut.

Definition at line 148 of file vec.h.

148 : x(0), y(0), z(0) {}

◆ vec3() [2/2]

vec3::vec3 ( const vec2 a,
const float  _z 
)
inline

constructeur par defaut.

Definition at line 151 of file vec.h.

151 : x(a.x), y(a.y), z(_z) {}

Member Function Documentation

◆ operator()()

float vec3::operator() ( const unsigned int  i) const
inline

renvoie la ieme composante du vecteur.

Definition at line 159 of file vec.h.

159 { return (&x)[i]; }

The documentation for this struct was generated from the following file: