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

◆ operator/=() [1/5]

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

Definition at line 203 of file geometry.h.

203 {
204 // *this = point_xy_math::div(*this, f);
205 x /= f;
206 y /= f;
207 return *this;
208 }