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

◆ operator/=() [2/5]

template<typename T>
vec2 & fl::vec2< T >::operator/= ( const float & f)
inline

Definition at line 24 of file geometry.h.

24 {
25 // *this = point_xy_math::div(*this, f);
26 x /= f;
27 y /= f;
28 return *this;
29 }