vector2.cpp
Go to the documentation of this file.
1 
7 #include "vector2.h"
8 
9 namespace argos {
10 
11  /****************************************/
12  /****************************************/
13 
14  const CVector2 CVector2::X(1.0, 0.0);
15  const CVector2 CVector2::Y(0.0, 1.0);
16  const CVector2 CVector2::ZERO;
17 
18  /****************************************/
19  /****************************************/
20 
21 }
The namespace containing all the ARGoS related code.
Definition: ci_actuator.h:12
static const CVector2 ZERO
The zero vector (0,0)
Definition: vector2.h:42
static const CVector2 X
The x axis.
Definition: vector2.h:36
static const CVector2 Y
The y axis.
Definition: vector2.h:39