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 246 of file geometry.h.

246 {
247 //*this = point_xy_math::add(*this, p);
248 x += p.x;
249 y += p.y;
250 return *this;
251 }
value_type y
Definition geometry.h:191
value_type x
Definition geometry.h:190