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

vecteur generique, utilitaire. More...

#include <vec.h>

Public Member Functions

 vec2 ()
 constructeur par defaut. More...
 
 vec2 (const float _x, const float _y)
 
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
 

Detailed Description

vecteur generique, utilitaire.

Definition at line 130 of file vec.h.

Constructor & Destructor Documentation

◆ vec2()

vec2::vec2 ( )
inline

constructeur par defaut.

Definition at line 133 of file vec.h.

133 : x(0), y(0) {}

Member Function Documentation

◆ operator()()

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

renvoie la ieme composante du vecteur.

Definition at line 137 of file vec.h.

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

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