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

◆ operator/=() [4/5]

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

Definition at line 43 of file geometry.h.

43 {
44 // *this = point_xy_math::div(*this, d);
45 x /= d;
46 y /= d;
47 return *this;
48 }