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

36 {
37 // *this = point_xy_math::div(*this, f);
38 x /= f;
39 y /= f;
40 return *this;
41 }