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


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