GameKit
0.0.1a
C++ gamedev tools
|
#include <Vector3.hpp>
Public Member Functions | |
Vector3 ()=default | |
Vector3 (T _x, T _y, T _z) | |
template<typename U > | |
Vector3 (const Vector2< U > &vector2, U _z) | |
template<typename U > | |
Vector3 (const Vector3< U > &vector3) | |
Vector3 | operator+ (const Vector3< T > &vector3) const |
Vector3 | operator- (const Vector3< T > &vector3) const |
Vector3 | operator- () const |
Vector3 | operator* (T n) const |
Vector3 | operator/ (T n) const |
Vector3 & | operator= (T n) |
Vector3 & | operator+= (const Vector3 &vector3) |
Vector3 & | operator-= (const Vector3 &vector3) |
Vector3 & | operator*= (T n) |
Vector3 & | operator/= (T n) |
bool | operator== (const Vector3< T > &vector3) const |
bool | operator!= (const Vector3< T > &vector3) const |
bool | operator< (const Vector3< T > &vector3) const |
bool | operator> (const Vector3< T > &vector3) const |
Vector2< T > | xy () const |
Public Attributes | |
T | x |
T | y |
T | z |
Definition at line 26 of file Vector3.hpp.
|
default |
|
inline |
Definition at line 29 of file Vector3.hpp.
|
inline |
Definition at line 32 of file Vector3.hpp.
|
inline |
Definition at line 35 of file Vector3.hpp.
|
inline |
Definition at line 57 of file Vector3.hpp.
|
inline |
Definition at line 40 of file Vector3.hpp.
|
inline |
Definition at line 53 of file Vector3.hpp.
|
inline |
Definition at line 37 of file Vector3.hpp.
|
inline |
Definition at line 51 of file Vector3.hpp.
|
inline |
Definition at line 38 of file Vector3.hpp.
|
inline |
Definition at line 39 of file Vector3.hpp.
|
inline |
Definition at line 52 of file Vector3.hpp.
|
inline |
Definition at line 42 of file Vector3.hpp.
|
inline |
Definition at line 54 of file Vector3.hpp.
|
inline |
Definition at line 60 of file Vector3.hpp.
|
inline |
Definition at line 50 of file Vector3.hpp.
|
inline |
Definition at line 56 of file Vector3.hpp.
|
inline |
Definition at line 61 of file Vector3.hpp.
|
inline |
Definition at line 63 of file Vector3.hpp.
T gk::Vector3< T >::x |
Definition at line 65 of file Vector3.hpp.
T gk::Vector3< T >::y |
Definition at line 66 of file Vector3.hpp.
T gk::Vector3< T >::z |
Definition at line 67 of file Vector3.hpp.