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

253 {
254 // *this = point_xy_math::sub(*this, p);
255 x -= p.x;
256 y -= p.y;
257 return *this;
258 }
value_type y
Definition geometry.h:191
value_type x
Definition geometry.h:190