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

191 {
192 // *this = point_xy_math::div(*this, f);
193 x /= f;
194 y /= f;
195 return *this;
196 }