|
| constexpr | Vec2 () noexcept |
| | Default constructor - DOES NOT INITIALIZE VALUES. More...
|
| |
| constexpr | Vec2 (Vec2 const &) noexcept(std::is_nothrow_copy_constructible_v< Scalar >)=default |
| | Copy constructor. More...
|
| |
| constexpr | Vec2 (Vec2 &&) noexcept(std::is_nothrow_move_constructible_v< Scalar >)=default |
| | Move constructor. More...
|
| |
| Vec2 & | operator= (Vec2 const &)=default |
| | Copy assignment. More...
|
| |
| Vec2 & | operator= (Vec2 &&) noexcept=default |
| | Move assignment. More...
|
| |
| template<typename Other > |
| | Vec2 (Other x, Other y) noexcept(std::is_nothrow_constructible_v< Scalar, Other >) |
| | So that we can copy a regular Vec2 into the real part of a Jet Vec2. More...
|
| |
|
template<typename Other > |
| | Vec2 (Vec2< Other > const &other) noexcept(std::is_nothrow_constructible_v< Scalar, Other >) |
| |
|
|
static constexpr Vec2 | Zero () |
| |
◆ Vec2() [1/4]
Default constructor - DOES NOT INITIALIZE VALUES.
◆ Vec2() [2/4]
◆ Vec2() [3/4]
◆ Vec2() [4/4]
template<typename Other >
So that we can copy a regular Vec2 into the real part of a Jet Vec2.
◆ operator=() [1/2]
◆ operator=() [2/2]
The documentation for this struct was generated from the following file: