FastLED 3.9.15
Loading...
Searching...
No Matches

◆ operator+=()

template<typename T>
vec2 & fl::vec2< T >::operator+= ( const vec2< T > & p)
inline

Definition at line 64 of file geometry.h.

64 {
65 //*this = point_xy_math::add(*this, p);
66 x += p.x;
67 y += p.y;
68 return *this;
69 }