istereo
view libs/vmath/sphvec.h @ 37:e60f9d8af28d
fixed the orientation of the tunnel when in non-stereo mode
author | John Tsiombikas <nuclear@mutantstargoat.com> |
---|---|
date | Fri, 09 Sep 2011 23:37:38 +0300 |
parents | |
children | ff055bff6a15 |
line source
1 #ifndef VMATH_SPHVEC_H_
2 #define VMATH_SPHVEC_H_
4 #include "vmath_types.h"
6 #ifdef __cplusplus
7 /* Vector in spherical coordinates */
8 class SphVector {
9 public:
10 scalar_t theta, phi, r;
12 SphVector(scalar_t theta = 0.0, scalar_t phi = 0.0, scalar_t r = 1.0);
13 SphVector(const Vector3 &cvec);
14 SphVector &operator =(const Vector3 &cvec);
15 };
16 #endif /* __cplusplus */
18 #endif /* VMATH_SPHVEC_H_ */