SRVector3D.cxx
Go to the documentation of this file.
1 #include "StandardRecord/SRVector3D.h"
2 
3 #include <limits>
4 
5 // This value will cause an error as soon as it is used, which should help find
6 // uninitialized variables.
7 const float kNaN = std::numeric_limits<float>::signaling_NaN();
8 
9 namespace caf
10 {
12  x(kNaN), y(kNaN), z(kNaN)
13  {
14  }
15 
16  SRVector3D::SRVector3D(float _x, float _y, float _z) :
17  x(_x), y(_y), z(_z)
18  {
19  }
20 }
list x
Definition: train.py:276
Common Analysis Files.
Definition: SRGAr.h:13
const float kNaN
Definition: SRVector3D.cxx:7