|
Raylib C++
1.0.0
Encapsulates the raylib library
|
Struct containing a vector with 4 dimensions. More...
#include <Vector.hpp>

Public Member Functions | |
| Vector4 ()=default | |
| Default constructor. More... | |
| Vector4 (T x, T y, T z, T w) | |
| Create a Vector4. More... | |
| bool | operator== (const Vector4 &other) const |
| Compare the x, y, z & w values of two vectors. More... | |
| bool | operator!= (const Vector4 &other) const |
| Compare the x, y, z & w values of two vectors. More... | |
Public Attributes | |
| T | x |
| T | y |
| T | z |
| T | w |
Struct containing a vector with 4 dimensions.
| T | the type of the vector |
|
default |
Default constructor.
|
inline |
Create a Vector4.
| x | the x value |
| y | the y value |
| z | the z value |
| w | the w value |
|
inline |
Compare the x, y, z & w values of two vectors.
| other | the other vector to compare |
|
inline |
Compare the x, y, z & w values of two vectors.
| other | the other vector to compare |
| T raylib::Vector4< T >::w |
| T raylib::Vector4< T >::x |
| T raylib::Vector4< T >::y |
| T raylib::Vector4< T >::z |
1.8.17