#include <vector2.hpp>
template<typename T>
class std::math::vector2< T >
◆ pointer
◆ self_type
◆ value_type
◆ vector2() [1/5]
◆ vector2() [2/5]
value_type y
Definition: vector2.hpp:65
value_type x
Definition: vector2.hpp:64
◆ vector2() [3/5]
value_type y
Definition: vector2.hpp:65
value_type x
Definition: vector2.hpp:64
◆ vector2() [4/5]
75 :
x(vec.x),
y(vec.y) {}
value_type y
Definition: vector2.hpp:65
value_type x
Definition: vector2.hpp:64
◆ vector2() [5/5]
76 :
x(lpvec[0]),
y(lpvec[1]) {}
value_type y
Definition: vector2.hpp:65
value_type x
Definition: vector2.hpp:64
◆ operator pointer()
T * pointer
Definition: vector2.hpp:58
value_type c[2]
Definition: vector2.hpp:67
◆ operator void *()
79 {
return (
void*)(
c); }
value_type c[2]
Definition: vector2.hpp:67
◆ operator*=() [1/2]
88 x *= v.x;
y *= v.y;
return *
this; }
value_type y
Definition: vector2.hpp:65
value_type x
Definition: vector2.hpp:64
◆ operator*=() [2/2]
95 x *= f;
y *= f;
return *
this; }
value_type y
Definition: vector2.hpp:65
value_type x
Definition: vector2.hpp:64
◆ operator+=()
84 x += v.x;
y += v.y;
return *
this; }
value_type y
Definition: vector2.hpp:65
value_type x
Definition: vector2.hpp:64
◆ operator-=()
86 x -= v.x;
y -= v.y;
return *
this; }
value_type y
Definition: vector2.hpp:65
value_type x
Definition: vector2.hpp:64
◆ operator/=() [1/2]
90 x /= v.x;
y /= v.y;
return *
this; }
value_type y
Definition: vector2.hpp:65
value_type x
Definition: vector2.hpp:64
◆ operator/=() [2/2]
93 x /= f;
y /= f;
return *
this; }
value_type y
Definition: vector2.hpp:65
value_type x
Definition: vector2.hpp:64
◆ operator=()
82 x = v.x;
y = v.y;
return *
this; }
value_type y
Definition: vector2.hpp:65
value_type x
Definition: vector2.hpp:64
◆ to_string()
template<typename T>
template<typename E = char, class TAllocator = std::allocator, typename TStorage = std::simple_string_storage<E, TAllocator>>
99 return std::frmstring<E, TAllocator, TStorage>(
"{ %.3f %.3f }",
x,
y ); }
value_type y
Definition: vector2.hpp:65
value_type x
Definition: vector2.hpp:64
◆ @30
Die Dokumentation für diese Klasse wurde erzeugt aufgrund der Datei: