Specialized helper base struct for Vector.
Just for internal use!
| T | Type of the vector data |
| N | Dimension of the vector |
Inherited by Vector< T, N >.
Public Member Functions | |
| template<typename... Ts> | |
| VectorImpl (Ts...vals) | |
Public Attributes | |
| union { | |
| T data [N] | |
| struct { | |
| T x | |
| T y | |
| T z | |
| T w | |
| } | |
| }; | |