Unravel Engine C++ Reference
|
#include <basetypes.hpp>
Public Types | |
using | value_type = T |
Public Member Functions | |
point ()=default | |
point (T _x, T _y) | |
template<typename U , typename = typename std::enable_if<std::is_convertible<U, T>::value, void>::type> | |
point (const std::array< U, 2 > &data) | |
bool | operator== (const point &b) const |
bool | operator!= (const point &b) const |
Public Attributes | |
T | x = 0 |
T | y = 0 |
Definition at line 96 of file basetypes.hpp.
using point< T >::value_type = T |
Definition at line 98 of file basetypes.hpp.
Definition at line 101 of file basetypes.hpp.
|
inlineexplicit |
Definition at line 105 of file basetypes.hpp.
Definition at line 117 of file basetypes.hpp.
Definition at line 113 of file basetypes.hpp.
T point< T >::x = 0 |
Definition at line 109 of file basetypes.hpp.
T point< T >::y = 0 |
Definition at line 110 of file basetypes.hpp.