PageRenderTime 55ms CodeModel.GetById 34ms app.highlight 10ms RepoModel.GetById 2ms app.codeStats 0ms

/tags/rel-1.3.35/Examples/guile/matrix/vector.h

#
C++ Header | 10 lines | 7 code | 3 blank | 0 comment | 0 complexity | 0d13c4fdce60bbe235339df0987d2b8d MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
 1
 2#include <math.h>
 3
 4typedef struct {
 5  double x;
 6  double y;
 7  double z;
 8  double w;
 9} Vector;
10